jQuery(document).ready(function($) {	
	var maxHeight = 0;
	
	$('.az_listing_row').each(function(){
		$('.az_listing_name', $(this)).each(function(key, value){
			if($(value).outerHeight() > maxHeight) maxHeight = jQuery(value).outerHeight();
		});
		$('.az_listing_name', $(this)).height(maxHeight);
		maxHeight = 0;
	});
});
