
$(function() {
	
	$(".img_property_thumb_nails").click(function() {
								
//		var src = '/public/incoming/resize.php?i=' + $(this).attr("id") + '&w=344';
//		$("#mainImage").attr("src", src).show('slow');


		var src = 'background:url(/public/incoming/resize.php?i=' + $(this).attr("id") + '&w=344);background-repeat:no-repeat;';
		
		$("#mainImage").attr("style", src).show('slow');

		return false;
		
	});
	
});


