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;


if(navigator.appName == "Microsoft Internet Explorer"){
     var style = "<style>\n";
     style += "div#featured {	margin-left: -5px; margin-top: 60px; }\n";
     style += "ul#nav li.off, ul#nav li.on { margin-top: 8px; }";
     style += "ul#nav li.off ul, ul#nav li.on ul { margin-left: -55px; }\n";
     style += "</style>\n";
     document.writeln(style); 
}