<!--Supresses javascript errors
function silentErrorHandler() {return true;}
window.onerror=silentErrorHandler;
//-->
	$(document).ready(function(){
	//move anti menu
	$("#antilinks, #moveme").appendTo(".othercontentmenu");
	$("#othercontentmenu, .othercontentmenu #moveme").show('fast');
	
	//move property search
	$("#freeSearch").clone().insertAfter("#nextsteps");
	
	//hide other divs
	    $("#one,#two,#three,#four").hide('fast');
	//hide search box
		$("#sitesearchlink").click(function(){
		$("#custlogin, #htmlUserInfo, #sitesearchlink").hide('fast');
		$("#searchhide, #logintop").show('fast').toggle(); return false;
		});
	//hide login
		$("#logintop").click(function(){
		$("#searchhide, #logintop").hide('fast');
		$("#custlogin, #htmlUserInfo, #sitesearchlink").show('fast').toggle(); return false;									  
		});
	//hover over one
		$("#two").click(function(){
		$("#two").show('fast');
		});	 
	//this operates link number one
		$("#one").show('fast');
		$("#link1v2").click(function(){
		$("#four").show('fast');
		$("#two, #three, #one").hide('fast');	 
		},function(){
		// $("#one").hide('fast');
		});
		
	//hover over two
	$("#two").click(function(){
	$("#two").show('fast');
	$("#one, #three, #four").hide('fast');
	});	
	//this operates link number two
	$("#link2").click(function(){
	$("#two").show('fast');
	$("#one, #three, #four").hide('fast');
	},function(){
	//  $("#two").hide('fast');
	});
	//hover over two
	$("#three").click(function(){
	$("#three").show('fast');
	$("#one, #two, #four").hide('fast');
	});		  
	//this operates link number three
	$("#link3").click(function(){
	$("#three").show('fast');
	$("#one, #two, #four").hide('fast');
	},function(){
	//$("#three").hide('fast');
	});
	});