
/*

mewmedia:

set css menu fix for IE

*/

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className=this.className.replace(new RegExp(" nohover\\b"), "");
			this.className+=" sfhover";
			
		}
		
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			name = this.className;
			this.className = '';
			
			sfHover2(this, name);
		}
	}
}

function sfHover2(v, n) {
	if (v.className == '') {
		v.className = n;
		v.className += " nohover";
	}
	
}

if (window.attachEvent) {
	window.attachEvent("onload", sfHover);
}