// ***************************************************************************
// ***************************************************************************
// ***************************************************************************
//	JQuery page setup 
	$(document).ready(function(){
	//setup position of login forms 
	   $("#capture_form").css('left',(document.body.scrollWidth-420)/2);	
	   $("#login_form_wrapper").css('left',(document.body.scrollWidth-240)/2);	
	//alert("scrollWidth: "+document.body.scrollWidth);
	// hack to bring user to the top of mls page
	   $("iframe").load(function (){	
			window.scrollTo(0,00);
	   });	
	 });

