$(document).ready( function() {
  setCategoryHeight();
});
$(window).resize( function() {
  setCategoryHeight();
});
function setCategoryHeight() {
  $('.scrollArea').each( function() {
    newHeight = $(window).height() - $('#header').height() - $('#footer').height() - $('#content .header').height() - 74;
    $(this).jScrollPaneRemove();
    if ( $(this).height() < newHeight ) {
      $(this).css( "height", 'auto' ).removeClass( 'withScroll' );
    } else {
      $(this).css( "height", newHeight + 'px' ).addClass( 'withScroll' );
    }
  });
  $('.scrollArea').jScrollPane();
}
