<!--Supresses javascript errors
function silentErrorHandler() {return true;}
window.onerror=silentErrorHandler;
//-->
$(document).ready(function(){
	//hide news box
	$("#newsreveal").click(function(){
		$("#newshide").show('fast').toggle(); return false;
	});
	//hide search box
	$("#sitesearchlink").click(function(){
		$("#searchhide").show('fast').toggle(); return false;
	});
	//hover over one
	$("#one").hover(function(){
     $("#one").show('fast');
	});	 
	//this operates link number one
	$("#one").show('fast');
	$("#link1").hover(function(){
     $("#one").show('fast');
	 $("#two, #three, #four").hide('fast');	 
   },function(){
    // $("#one").hide('fast');
   });
	//hover over two
	$("#two").hover(function(){
     $("#two").show('fast');
	 $("#one, #three, #four").hide('fast');
});	
   //this operates link number two
      $("#link2").hover(function(){
     $("#two").show('fast');
	 $("#one, #three, #four").hide('fast');
   },function(){
   //  $("#two").hide('fast');
   });
	//hover over two
	$("#three").hover(function(){
     $("#three").show('fast');
	 $("#one, #two, #four").hide('fast');
});		  
   //this operates link number three
      $("#link3").hover(function(){
     $("#three").show('fast');
	 $("#one, #two, #four").hide('fast');
   },function(){
     //$("#three").hide('fast');
   });
});