// ***************************************************************************
// ***************************************************************************
// ***************************************************************************
//	JQuery page setup 
	$(document).ready(function(){
	// setup the lowjack hack for mls iframe listing pages
		if(document.getElementById('mlsiframe')!=null && document.getElementById('welcome')==null){
			var t=findPos(document.getElementById('mlsiframe'));
			$("#lowjack").css('top',t['top']+180);
			$("#lowjack").css('left',t['left']);
			$("#lowjack").css('filter','alpha(opacity=0)');
			$("#lowjack").click(function(){	   										 
				show_register();
				window.scrollTo(0,0);
			});
		}else{
				$("#lowjack").css('display','none');
		}
	//setup position of login forms 
	   $("#capture_form").css('left',100);	
	   $("#login_form_wrapper").css('left',100);	
	//alert("scrollWidth: "+document.body.scrollWidth);
	// hack to bring user to the top of mls page
	   $("iframe").load(function (){	
			window.scrollTo(0,0);
	   });	
	 });

