 $(document).ready(function(){
	// put anything that needs to run on page load here
	
	// Hide pageheader
	$('div#page div#pageheader').remove();
	
	// Resize agent photo
	$('div#page div#content div#home div.agentinfo img.photo').removeAttr('width');
	$('div#page div#content div#home div.agentinfo img.photo').removeAttr('height');
	//var imageSrc = $('div#page div#content div#home div.agentinfo img.photo').attr('src');
	//$('div#page div#content div#home div.agentinfo img.photo').attr('src', 'images/thumbnail.php?i=' + imageSrc + '&w=158');
	
	// Insert contact image
	$('div#page div#content div#home').prepend('<span id="contactMe">Contact Me</span>');
	
	// Insert gray center column
	
	// Insert property search image
	$('div.searchform').prepend('<span>Property Search</span>');
		
	// button replacements
	$("div.mlslookupform input#btnLookup").replaceWith('<input id="btnLookup" name="btnLookup" type="image" src="images/themes/windows/lookup_go.gif" />');
	//$("div.mlslookupform input#btnLookup").addClass("resize");
	
	$("div.searchform input#btnSearch").replaceWith('<input id="btnSearch" name="btnSearch" type="image" src="images/themes/windows/button_search.gif" />');
	//$("div.searchform input#btnSearch").addClass("resize");
});