$(function(){
    var pointHeight = new Array();
    $(".box").each(function(){
        pointHeight.push( $(this).height() );
    });
    function sort_num(a,b){return (b - a);}
    var maxHeight = pointHeight.sort(sort_num);
    $(".box").css({ height:maxHeight[0]+"px" });
});
