$(function(){
    if ($('#sidebar1').height() > $('#sidebar2').height()) {
        $('#content_main').height($('#sidebar1').height());
    } else {
        $('#content_main').height($('#sidebar2').height());
    }
    
});
