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;