// JavaScript Document

startList = function() {

//if (document.all&&document.getElementBy) {
navRoot = document.getElementById("nav");


for(j=0; j<navRoot.childNodes[0].childNodes[0].childNodes.length; j++){
navRoot1 = navRoot.childNodes[0].childNodes[0].childNodes[j];

for (i=0; i<navRoot1.childNodes[0].childNodes.length; i++) {
node = navRoot1.childNodes[0].childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
  }
// }
}
window.onload=startList;