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