<!--//--><![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_list").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
		this.className+=(this.className.length>0? " ": "") + "sfhover";
		if(this.id =="nav_li_services"){
			var lSelect = document.getElementById("strSelect");
			if(lSelect){
				lSelect.style.visibility="hidden";
			}
			
		}
		}
		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"), "");
		if(this.id =="nav_li_services"){
		var lSelect = document.getElementById("strSelect");
					if(lSelect){
						lSelect.style.visibility="visible";
			}
		}
		}
	}
}
}
window.onload=menuFix;
function valSearch(form){
	if(!form.searchInput.value){
			alert('Please enter something to search for');
			form.searchInput.focus();
			return false;
	}
		return true;
}
//--><!]]>