function mouseOver(){
	document.body.style.cursor = 'pointer';
}

function mouseOut(){
		document.body.style.cursor = 'default';
}

function tnavMOver(navButton){
	mouseOver();
	navButton.style.color = '#959595';
}

function tnavMOut(navButton){
	mouseOut();
	navButton.style.color = '#f7941d';
}

function getPage(thispage){
	window.location = '/?page='+thispage;
}

function getGallery(thisgallery){
	window.location = '/?page=photos&gallery='+thisgallery;
}

function showMap(){
	
	document.getElementById('dover').style.display ='none';
	document.getElementById('driving').style.display ='block';

}

function hideMap(){
	document.getElementById('dover').style.display ='block';
	document.getElementById('driving').style.display ='none';
}
