$(document).ready(function() {
	
	$('table#tbl_properties td:first').prepend("<img src='images/arw-browse.jpg' />");
	$('#tbl_properties').css( {cursor: "pointer" } );
	
	$('#tbl_properties').click( function() {
		$('table#tbl_properties td:first img').remove();
		$('#tbl_properties div.listingnav').fadeIn("slow");
	});
});