$(document).ready(function(){
	// put anything that needs to run on page load here
	
	var loggedIn = $("#btnLogin").size() == 0 ? true : false;
	popupify(loggedIn);
	
	var thumb_height = $('#property_photo_thumbs').height();
	$('#agent_info').css('top', thumb_height + 35 + 15);
	
	// move `agent_info` block up to bottom of thumbnails
	$("#open_houses").appendTo("#main");
	$("#open_houses").css( { "position" : "absolute" , 
							 "top": "0px",
							 "right": "-155px",
							 "width": "110px"} );
	
	
	
});

function showPicture(src, width, height)
{
	$('#big_picture').attr('src', src);
	$('#big_picture').css('width', width);
	$('#big_picture').css('height', height);
}