function pausecomp(millis)
{
var date = new Date();
var curDate = null;

do { curDate = new Date(); }
while(curDate-date < millis);
}

startList = function() {
if (document.all&&document.getElementByClass) {
navRoot = document.getElementByClass("navbar");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className =this.className.replace("", " over")
  }
  node.onmouseout=function() {
  //pausecomp(100);
  this.className=this.className.replace(" over", "");
  //function closeMenu(){ this.className = this.className.replace(" over", ""); }
  //setTimeout("closeMenu()", 50);
  //setTimeout("this.className = this.className.replace(\" over\", \"\")", 50);
  //closeMenu();
   }
   }
  }
 }
}
window.onload=startList;