<!--//

startList = function()
{
	//menu option initialization
	if (document.all && document.getElementById)
	{
		nav1Root = document.getElementById("nav1");
		for (i=0; i < nav1Root.childNodes.length; i++)
		{
			node = nav1Root.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover = function()
				{
					this.className+="over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace("over", "");
	   			}
			}
	  	}
		
		nav1Root = document.getElementById("nav2");
		for (i=0; i < nav1Root.childNodes.length; i++)
		{
			node = nav1Root.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover = function()
				{
					this.className+="over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace("over", "");
	   			}
			}
	  	}
	}
}

window.onload=startList;
//-->