clearMe  = function()
	{
	if(document.searchFrm.searchBox.value == "Enter search terms")
		document.searchFrm.searchBox.value = "";
	} 
	
	
	
	
	
	init = function(){
	
		var navLocation = document.getElementById("nav").getElementsByTagName("li");
		for (var i=0; i<navLocation.length; i++) {
			if(navLocation[i].id == navLocal)
				navLocation[i].className += "selected";
		}
		
		jsHover();
	
	}
	
	
	
	
	
	sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("lI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}


jsHover = function(){
	var sfEls = document.getElementsByTagName("input");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" jsHover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" jsHover\\b"), "");
		}
	}
	
	
}