
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function initPage()
{
	var navRoot = document.getElementById("menu");
	var lis = navRoot.getElementsByTagName("li");
	for (var i=0; i<lis.length; i++)
	{
		if (lis[i].parentNode.id == "menu")
		{
			lis[i].onmouseover = function()
			{
				this.className = "hover";
			}
			lis[i].onmouseout = function()
			{
				this.className = "";
			}
		} else {
			//all other li's in the submenus
			lis[i].onmouseover = function()
			{
			//	alert(this.innerHTML)
				this.className = "subhover";
			}
			lis[i].onmouseout = function()
			{
				this.className = "";
			}
			}
		
	}
}

if (document.all && window.attachEvent)
	attachEvent("onload", initPage);