/*
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;
*/

startList = function() {
    if (document.all&&document.getElementsByTagName("ul")) {       
       var anz = document.getElementsByTagName("ul").length;
        //alert(anz);
        for(z=0; z<anz; z++){
            // document.write("1. -> "+ z +" von "+ anz+" <-<br> ");
             navRoot = document.getElementsByTagName("ul")[z];
          //  alert(navRoot); 
        if(navRoot){
            anz2 =navRoot.childNodes.length
             // alert(anz2);
            for (i=0; i<navRoot.childNodes.length; i++) {
               // document.write(" 2. -> "+ i +"   <br> ");
               node = navRoot.childNodes[i]; 
                  // alert(node.nodeName);
                if (node.nodeName=="LI") {
                    node.onmouseover=function() {  
                      this.className+=" over";
                        // this.className+=" over";
                        // alert(this.className);   
                    }
                    node.onmouseout=function() {
                        this.className=this.className.replace(" over", "");
                    }
                }
            }
        }
       }
    }              
}
window.onload=startList;