startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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", "");
   }
   }
  }
 }
}
window.onload=startList;

/*
function showFly(name,link) {	
 hideFly();
 var curfly=document.getElementById(name); 
 if (curfly) {   
   curfly.style.display="";   
   } 
 return false;
}

function hideFly(name,n) {
  if (flyt) { clearTimeout(flyt); }
  var s=(name ? document.getElementById(name) : lastfly);
  if (s && s!=flyin) {
   flypos[name]=s.style.left;
   s.style.left='-1000px';
   if (name) { flypos[name+"t"]=s.style.top; }
   if (n==0) { flypos[name]='0'; }
   if (lastlink) { lastlink.style["backgroundColor"]="#ffffff"; lastlink=0; }
   releaseMouseEvent();
   lastfly=0; flyin=0;
  }
}

function showFly(name,link) {
 var curfly=document.getElementById(name);

 if (curfly) {
   curfly.style.display=""; 
   if (lastfly) { flyin=0; hideFly(); }
   if (flyt) { clearTimeout(flyt); }
   if (flypos[name]!='0') {
   lastfly=curfly;
   lastfly.style.display="inline";
   lastfly.style.left=flypos[name];
   link.style["backgroundColor"]="#d9d9d9";
   lastfly.style.top=flypos[name+"t"];
   var fb=lastfly.offsetTop+lastfly.offsetHeight-6;
   var pb=document.body.clientHeight+document.body.scrollTop;
   if (fb>pb) { flyd=fb-pb; var newtop=lastfly.offsetTop-flyd;
       lastfly.style.top=newtop+"px"; }
   else {flyd=0; }
   lastlink=link;
   flyt=setTimeout("hideFly()",15000);
   captureMouseEvent(flyMove);
   }
 } else if (lastfly) { flyin=0; hideFly(); }
 return false;
}
*/