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