// //startList = function() { //if (document.all&&document.getElementById) { //navRoot = document.getElementById("nav"); //for (i=0; i= 1) { // we have children - append hover function to the parent li.onmouseover = function () { if (!this.getElementsByTagName("ul")) return false; var ul = this.getElementsByTagName("ul"); ul[0].style.display = "block"; return true; } li.onmouseout = function () { if (!this.getElementsByTagName("ul")) return false; var ul = this.getElementsByTagName("ul"); ul[0].style.display = "none"; return true; } } } return true; } addLoadEvent(prepareMenu);