<!--//--><![CDATA[//><!--
function menuFix() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover";
		}
		sfEls[i].onMouseDown=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover";
		}
		sfEls[i].onMouseUp=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover";
		}
		sfEls[i].onmouseout=function() {
		this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"), "");
		}
	}
	
}
function menuFix2() {
	var sfEls2 = document.getElementById("nav2").getElementsByTagName("li");
	for (var i=0; i<sfEls2.length; i++) {
		sfEls2[i].onmouseover=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover2";
		}
		sfEls2[i].onMouseDown=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover2";
		}
		sfEls2[i].onMouseUp=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover2";
		}
		sfEls2[i].onmouseout=function() {
		this.className=this.className.replace(new RegExp("( ?|^)sfhover2\\b"), "");
		}
	}
}
window.onload= function OnL()
{
  menuFix();
  menuFix2();
}

//--><!]]>


