var img_arr = new Array();
var img_arr_tags = new Array();
var img_arr_count = new Array();
var img_arr_max = new Array();


$(document).ready(function(){
						   
	/* give the property list box a nice border hover action by changing the border color */
	$(".listing").hover(function(){
		$(this).css("border","1px solid #000066");
		id = $(this).attr('id');
		id.replace('/num_/','');
	},function(){
		$(this).css("border","1px solid #ccc");
	});

});

