sfHover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


sf_menu_Hover = function() {
	var sf_menu_Els = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sf_menu_Els.length; i++) {
		sf_menu_Els[i].onmouseover=function() {
			this.className+=" sf_menu_Hover";
		}
		sf_menu_Els[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sf_menu_Hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sf_menu_Hover);
