//Menu

startList = function() { 
   if (document.all&&document.getElementById) { 
      navRoot = document.getElementById("nav"); 
      navRoot1 = document.getElementById("nav1"); 
      navRoot2 = document.getElementById("nav2"); 
      navRoot3 = document.getElementById("nav3"); 
      navRoot4 = document.getElementById("nav4");
	  navRoot5 = document.getElementById("nav5");
	  navRoot6 = document.getElementById("nav6");
	  


var nodes = navRoot.getElementsByTagName("LI"); 
for (var i=0; i<nodes.length; i++) { 
nodes[i].onmouseover = function() { 
this.className += " over"; 
} 
nodes[i].onmouseout = function() { 
this.className = this.className.replace(new RegExp(" over\\b"), ""); 
} 
}  

   } 
} 
if (window.attachEvent) window.attachEvent("onload", startList); 
// End Menu
