function resetScrollbar(sScrollableDivClassName)
{
    // reset scrollbar to correct height
    $('div.'+sScrollableDivClassName).jScrollPaneRemove();
    $('div.'+sScrollableDivClassName).jScrollPane({
        scrollbarWidth: 16,
        scrollbarMargin: 0,
        showArrows: 'true',
        wheelSpeed: 32
    });        
}

function resetAllScrollbars()
{
    resetScrollbar('scrollable');
    resetScrollbar('content');
}

$(document).ready(function(){
    $(window).bind("resize", function(){
        resetAllScrollbars();        
    });
});         