<!--

startList = function() 
{
	if (document.all&&document.getElementById) 
	{
	    // var msg = "start: ";
		divNavRoot = document.getElementById("mainNav");
		for (a=0; a<divNavRoot.childNodes.length; a++) 
		{
		    navRoot = divNavRoot.childNodes[a];
		    //msg += "{" + navRoot.nodeName + ":" + navRoot.className + "}";
		    if (navRoot.nodeName == "UL") 
		    {
		        for (i=0; i<navRoot.childNodes.length; i++) 
		        {
			        node = navRoot.childNodes[i];
			        if (node.nodeName=="LI") 
			        {
				        node.onmouseover=function() 
				        {
					        this.className = this.className+"Over";
				        }
				        node.onmouseout=function() 
				        {
					        this.className = this.className.replace("Over", "");
				        }
        				
				        //msg += "[" + node.nodeName + ":" + node.className+ "]";
			        }
		        }
		    }
		}
		//msg += " :end";
		// msg and this alert is for debugging purposes
		//alert(msg);
	}
}
window.onload=startList;
//-->

