$(function() {
    var sHeight = $('#sidebar').height();
    var cHeight = $('#content').height();
    if (sHeight > cHeight) {
        $('#content').height(sHeight+23);
    }

});