function gotoPage(targetPage)/*for menu titles that are also links*/
{
	document.location = targetPage;
}

function dropDown()
{
	this.style.background = "#cccccc";
	
	if(document.getElementById(this.id + "Drop"))/*i.e. if drop-down exists*/
	{
		document.getElementById(this.id + "Drop").style.display = "block";
	}
}

function pullUp()
{
	if(this.id != document.getElementById("pageID").innerHTML)
	{
		this.style.background = "none";
	}
	
	if(document.getElementById(this.id + "Drop"))/*i.e. if drop-down exists*/
	{
		document.getElementById(this.id + "Drop").style.display = "none";
	}
}

function init()
{
	if((document.getElementById("pageID")) && (document.getElementById("pageID").innerHTML != ""))
	{
		document.getElementById(document.getElementById("pageID").innerHTML).style.background = "#cccccc";
	}
	
	document.getElementById("menuHome").onmouseover = dropDown;
	document.getElementById("menuHome").onmouseout = pullUp;
	
	document.getElementById("menuAbout").onmouseover = dropDown;
	document.getElementById("menuAbout").onmouseout = pullUp;
	
	document.getElementById("menuServices").onmouseover = dropDown;
	document.getElementById("menuServices").onmouseout = pullUp;
	
	document.getElementById("menuPartners").onmouseover = dropDown;
	document.getElementById("menuPartners").onmouseout = pullUp;
	
	document.getElementById("menuGallery").onmouseover = dropDown;
	document.getElementById("menuGallery").onmouseout = pullUp;
	
	document.getElementById("menuContact").onmouseover = dropDown;
	document.getElementById("menuContact").onmouseout = pullUp;
}

window.onload = init;