
startList0 = function() 
{ if (document.all&&document.getElementById) 
	 {navRoot0 = document.getElementById("nav");
	  for (i=0; i<navRoot0.childNodes.length; i++) 
	 	  {node0 = navRoot0.childNodes[i];
		   if (node0.nodeName=="LI") 
		 	  {
		 	    node0.onmouseover=function(){this.className+=" over";} 
		 	    node0.onmouseout=function(){this.className=this.className.replace(" over", "");} 
   		      }
  	      }
     }
}
window.onload=startList0;
