$(document).ready(function(){
	$('.active_listing').click(function(){
		location = '/properties/active_listing';
	});
	$('.recent_sales').click(function(){
		location = '/properties/recent_sales';		
	});
	$('.mls_search').click(function(){
		mls_search();		
	});
	
	$('#imgList img').mouseover(function(){
		$('#largerImage').attr('src', $(this).attr('src'));
	});
	
	$('#info .button img').click(function(){
		
		location = '/contact?properties_id='+$(this).attr('pid');
	});
	
	
	
	function setBanner()
	{
		var img = $('#info .hide').prev();
		var css = {	position:'absolute',
					top: (img.offset().top-1) + 'px',
					left: (img.offset().left - 5) + 'px'};
		$('#info .hide').css(css);
		$('#info .hide').show();
	}
	
	setBanner();
	$(window).resize(function(){
		setBanner();
	});
})
