function makeHovers(d){for(var b=0;b<d.childNodes.length;b++){var c=d.childNodes[b];if(c.nodeName=="LI"){c.style.zIndex=10000000;c.onmouseover=function(){this.className+=" over"};c.onmouseout=function(){this.className=this.className.replace(" over","")};for(var a=0;a<c.childNodes.length;a++){if(c.childNodes[a].nodeName=="UL"){makeHovers(c.childNodes[a])}}}}}function startList(a){if(document.all&&document.getElementById){makeHovers(document.getElementById(a))}};


