jQuery(document).ready(function(){ 
    var columns = jQuery('#main .column');
    var bHeight = 0;
    jQuery.each(columns, function(i, column){
        var h = jQuery(column).innerHeight();
        if(h > bHeight){
            bHeight = h;
        }
    });
    columns.height(bHeight);
});

