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