// JavaScript Document
// MODIFIED NOV 2006, LOOK FOR UP TO 100 LIST ITEMS NAMED NAV#
startList = function() {
if (document.all&&document.getElementById) {
	for(a=0; a < 100; a++)
	 {
	 if(document.getElementById("nav" + a))
	  {
navRoot = document.getElementById("nav" + a);
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
	  } // END IF THE LIST ITEM EXISTS
	 } // END MODIFIED "a" FOR LOOP
 }
}

startList();