/*
	Used to ensure that the product boxes that are placed in the same row have the same height	
	Note: Please make sure that jquery was loaded before this script
*/

jQuery.noConflict();

jQuery(document).ready(function(){
	var max_height = 0;
	var children = new Array();
	var counter = 0;

	jQuery('.az_pbox_new').each(function(){	    
		if(jQuery(this).innerHeight() > max_height){													  
			max_height = jQuery(this).innerHeight();
		}
		children[counter] = this;
			
		counter++;
	});	
	    
	jQuery.each(children, function(i, val){				
		jQuery(val).height(max_height + 'px');
	});	
	
});
