/*
	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(document).ready(function(){
    var maxHeight = 0;
    
    jQuery('.az_product_wrapper').each(function(){
        if(jQuery(this).innerHeight() > maxHeight)
            maxHeight = jQuery(this).innerHeight();        
    });  
    
    jQuery('.az_product_wrapper').each(function(){        
        jQuery(this).height(maxHeight + 63);         
    });   
    
});
