startList = function()
{
	navRoot = document.getElementById("header").getElementsByTagName("ul")[0];
	for (i = 0; i < navRoot.childNodes.length; i++)
	{
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI")
		{
			if(node.className == "over")
			{
				index = node.id;
			}
			node.onmouseover=function()
			{
				for(j = 0; j < navRoot.childNodes.length; j++)
				{
					node2 = navRoot.childNodes[j];
					if(node2.nodeName == "LI")
					{
						node2.className = "";
					}
				}
				this.className = "over";
			}
			node.onmouseout=function()
			{
				this.className = "";
				document.getElementById(index).className = "over";
			}
		}
	}
}
window.onload=startList;
