let hashes = window.location.hash;
document.addEventListener('DOMContentLoaded', function() {
if (hashes == '#style') {
stylefunc();
} else if (hashes == '#presentation') {
prfunction();
} else if (hashes == '#polygraphy') {
pgfunction();
} else if (hashes == '#web'){
webfunction();
} else if (hashes == '#graphics'){
grfunction();
} else {
projectsfunction();
}
});