<!--//--><![CDATA[//><!--
/****************************************************************************** 
Tested in the following browsers.  
NS 7.x Mac
Safari 1.2.3 
Firefox 1.0 PR Mac
Opera 7.54 Mac
Firefox 1.0 PR Win
Opera 7.54 Win
Netscape 7.2 Win
IE 6.0 Win
IE 5.5 Win
IE 5.01 Win 
******************************************************************************/
var thePage = location.pathname;
function menuFix() {
if (document.all&&document.getElementById){
	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";
		if(this.id =="l_services"){document.getElementById("intAreaID").style.visibility="hidden";}
		if(this.id =="l_services"){document.getElementById("strYear").style.visibility="hidden";}
		}
		// event added to keep menu items from disappearing
		sfEls[i].onMouseDown=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover";	
		}
		// event added to keep menu items from disappearing
		sfEls[i].onMouseUp=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover";
		}
		sfEls[i].onmouseout=function() {
		this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"), "");
		if(this.id =="l_services"){document.getElementById("intAreaID").style.visibility="visible";}
		if(this.id =="l_services"){document.getElementById("strYear").style.visibility="visible";}
		}
	}
}
}
window.onload=menuFix;

//--><!]]>