// JavaScript Document
function menu_onmouseover(strMenuDiv)
{
	document.getElementById(strMenuDiv).style.color = "#ffff99";
	document.getElementById(strMenuDiv).style.fontWeight = "900";
}

function menu_onmouseout(strMenuDiv)
{
	document.getElementById(strMenuDiv).style.color = "#ffffff";	
	document.getElementById(strMenuDiv).style.fontWeight = "600";	
}

function menu_onclick(strURL)
{
	document.location = strURL;
}
