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