function sortNumber(a,b)    {
    return a - b;
}

function maxHeight() {
    var heights = new Array();
    $('.pane_latest').each(function(){
        
        $(this).css('height', 'auto');
        
        heights.push($(this).height());
        
        heights = heights.sort(sortNumber).reverse();
      	 $('.pane_latest').each(function(){
        	$(this).css('height', heights[0]);
        	})
    });        
}



//$("#pane_latest").ready(function() {
$(document).ready(function() {
    maxHeight();
})
