// JavaScript Document
$(document).ready(function(){
    $('.az_pbox_group').each(function(){
        var highest = 0;
        $('.az_pbox_new .boxContents', this).each(function(){
            if($(this).height() >= highest){
                highest = $(this).height();
            }
        })
        $('.az_pbox_new .boxContents', this).each(function(){
            $(this).height(highest);
        })
    })              
});
