// JavaScript Document
var menuList = new Array();

function ShowMenu(menuName)
{
	var numOccur = 0;
	for(var i=0;i<menuList.length;i++)
	{
		if(menuList[i] == menuName)numOccur++;
	}
	if(numOccur == 0)menuList[menuList.length] = menuName;
	if(arguments)
	{
		if(arguments.length == 1)
		{
			var element = document.getElementById(menuName);
			element.style.visibility = "visible";
		}
	}
}

function MenuRestore()
{
	for(var i=0;i<menuList.length;i++)
	{
		var element = document.getElementById(menuList[i]);
		element.style.visibility = "hidden";
	}
}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("dropdown");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="DIV") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
//window.onload=startList;