jQuery(document).ready(function($) {
    if($('.az_prod_row').length){
        //$('.az_prod_row .boxContents').each(function(){
        //     var pHeight = $(this).parents('.az_prod_row').height();
        //     $(this).height(pHeight);
        //})
        $('.az_prod_row').each(function(){
            var pHeight = $(this).height();
            $('.boxContents',this).each(function(){
                $(this).height(pHeight);
            });
        });
    }
});
