$().ready(function(){   
    function equalizeBoxesH(id){
        var numbox = $('\'' + id + ' .smallText').length;
        var numleftbox = $('\'' + id + ' .leftPbox').length;
        var numrightbox = $('\'' + id + ' .rightPbox').length;
        var numrows = 0;

        if(numleftbox > numrightbox){
            numrows = numrightbox;            
        }else{
            numrows = numleftbox;
        }
        for(var numctr = 0; numctr < numrows; numctr++){
            var numleftH = eval( '$(\'' + id + ' .leftPbox:eq(' + numctr + ') .boxContents \').height();' );
            var numrightH = eval( '$(\'' + id + ' .rightPbox:eq(' + numctr + ') .boxContents \').height();' );
            if(numleftH > numrightH){
                eval( '$(\'' + id + ' .rightPbox:eq(' + numctr + ') .boxContents \').height(' + numleftH + ');' );                             
            }else if(numrightH > numleftH){
                eval( '$(\'' + id + ' .leftPbox:eq(' + numctr + ') .boxContents \').height(' + numrightH + ');' );                                         
            }
        } 
    }      
    equalizeBoxesH('#specialsListing');
    equalizeBoxesH('#specialsDefault');
    equalizeBoxesH('#featuredProducts');
    equalizeBoxesH('#whatsNew');
    equalizeBoxesH('#newProductsDefault');
});