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.nodeValue);
                if (node.nodeName=="LI") {
                    
                    node.onmouseover=function() {                   
                        this.className+=" over";
                    }
                  
                    node.onmouseout=function() {
                        this.className=this.className.replace(" over", "");
                    }
                }
            }
        }
      
       }
    }              
}
window.onload=startList;
 
