<!--Supresses javascript errors
function silentErrorHandler() {return true;}
window.onerror=silentErrorHandler;
//-->
	$(document).ready(function(){
    //property search (this moves the search to the right div in the right gutter
	$("#ctl00_rightgutter_freeSearch").appendTo("#propasearch");
	$("#propasearch #ctl00_rightgutter_freeSearch").show('fast');
	//end property search
	//begin cmls search (this moves the search into the right div in the gutter)
	$("#cmls").appendTo("#cmlssearch");
	$("#cmlssearch #cmls").show('fast');
	//end cmls search
	//begin cmls total count (this moves the count into the right div in the gutter)
	$("#cmlscount").appendTo("#results");
	$("#results #cmlscount").show('fast');
	//end cmls count
	//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');
	});
	});