$(document).ready(function () {
    var content_height = $('#content').height();
    var sidebar_height = $('#sidebar-inner').height();
    if ( sidebar_height > content_height ) {
        $('#content').height( sidebar_height + 2 ); // +2 for the sidebar border
    }
    else {
        $('#sidebar-inner').height( content_height );
    }
});
