function doResize () {
    var newHeight = $("body").outerHeight();
    newHeight = newHeight - 236 - 55;
    var finalNewHeight = newHeight + "px";
    $("#content").css("height", finalNewHeight);
    $('.scroll-pane').jScrollPane({scrollbarWidth:8});
}


$(document).ready(function() {
    $('.scroll-pane').jScrollPane({scrollbarWidth:8});
    doResize();    
    
    window.onresize = function(event) {
        doResize();
    }
}); 



