var cpage="home";function switchPage(to){if(to!=cpage){$("#p"+cpage).slideUp();cpage=to;$("#p"+cpage).slideDown();}}
$(document).ready(function(){if(window.location.hash.length>2){var anchorname=window.location.hash.substr(1).toLowerCase();switch(anchorname){case"about":case"aboutme":case"over":case"overmij":switchPage("about");break;case"latitude":case"location":case"locatie":case"gps":switchPage("latitude");break;case"contact":case"contactme":switchPage("contact");break;}}
$("a[href='#home']").click(function(e){switchPage("home");});$("a[href='#about']").click(function(e){switchPage("about");});$("a[href='#latitude']").click(function(e){switchPage("latitude");});$("a[href='#contact']").click(function(e){switchPage("contact");});});
