<!--This runs the menu for IE-->
sfHover = function() {
	<!--This collects all list items in within the nav_pulldown ul-->
	var sfEls = document.getElementById("nav_pulldown").getElementsByTagName("LI");
	<!--This runs through that array-->
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
		<!--This adds a new class name (in the CSS) on hover->
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
		<!--This removes the class name (in the CSS) on hover-->
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
<!--This runs the munu upon load-->
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>