function centerVertically() {
	
/*    var frameHeight=580, marginTop=60;

    if (self.innerWidth)
        frameHeight = self.innerHeight;
    else if (document.documentElement && document.documentElement.clientHeight)
        frameHeight = document.documentElement.clientHeight;
    else if (document.body && document.body.clientHeight)
        frameHeight = document.body.clientHeight;

    if (frameHeight > 460) {
        marginTop = (frameHeight-460)/2;
        document.getElementById("MainTable").style.marginTop = marginTop + "px";
    }
*/
}

window.onresize = centerVertically;
window.onload = function() {
	//centerVertically();
	
	var currMenu = null;	
	var pathname = location.pathname;

	if (pathname.indexOf("home.php") > 0) 
		currMenu = "Menu_1";
	else if (pathname.indexOf("photos.php") > 0) 
		currMenu = "Menu_4";
	else if (pathname.indexOf("map.php") > 0) 
		currMenu = "Menu_5";
	else if (pathname.indexOf("contact_us.php") > 0) 
		currMenu = "Menu_6";
	
	
	if (currMenu!=null) {
		document.getElementById(currMenu).href = "javascript:void(0)";
		document.getElementById(currMenu).style.cursor = "default";					
		document.getElementById(currMenu).style.color = "#779977";			
	}
	
	

}