/* mouseover function header tow Image */
function mover (id) {
	if (id=="georgetown"){
	document.getElementById('georgetown').style.backgroundImage ="url(images/georgetown_over.gif)";
	document.getElementById('harbor').style.backgroundImage ="url(images/harbor.gif)";
	}
	
	if (id=="harbor"){
	document.getElementById('georgetown').style.backgroundImage ="url(images/georgetown.gif)";
	document.getElementById('harbor').style.backgroundImage ="url(images/harbor_over.gif)";
	}
}

function mout (){
	document.getElementById('georgetown').style.backgroundImage ="url(images/georgetown.gif)";
	document.getElementById('harbor').style.backgroundImage ="url(images/harbor.gif)";
}




