

$(document).ready(function() {
	$('.propertylist_business_photo').hover(
	
		function(){
			//$(this).addClass('propertylist_business_photo_show');
			div_id = $(this).attr("rel");
			
			$("#" + div_id).show();
			
		},
		
		function(){
			div_id = $(this).attr("rel");
			
			$("#" + div_id).hide();

			//$(this).removeClass('propertylist_business_photo_show') 
		}
	);
	
	jQuery('.propertylist_table tr:nth-child(even)').addClass('even');
});


