function az_popupWindow(url) {
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}

jQuery(document).ready(function($) {
	$('#az_category_menu').az_dropDownMenu({timer: 500, parentMO: 'parent-hover', childMO: 'child-hover', numberOfLevels: 3});
	
	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;
	});
});
