var initialContentHeight = 0;

function resizeWindow() {
  if ( !initialContentHeight ) {
    initialContentHeight = $("#mainContent").height();
  }
  
  resizeImage();

  $('body').height($(window).height());
  if ( $("#footer").length ) { // On a form...
    var tcmTop = parseInt($('#themeContainer').css('margin-top').replace('px', ''));
    var tcmBot = parseInt($('#themeContainer').css('margin-bottom').replace('px', ''));
    $('#themeContainer').height($('body').height() - $("#footer").height() - tcmTop - tcmBot);
    if ( location.pathname != '/' ) {
      $("#mainContent").jScrollPaneRemove();
      $("#contentArea").height($('#themeContainer').height());
      //$('#contentArea').height($('#footer').offset().top - $('#contentArea').offset().top - 60);
      //$('#mainContent').height($('#footer').offset().top - $('#contentArea').offset().top - 60);
      //if ( $("#mainContent").height() >= $("#contentArea").height() ) {
      if ( initialContentHeight >= $("#contentArea").height() ) {
        $("#mainContent").height($("#contentArea").height());
        $("#mainContent").jScrollPane({showArrows:false, scrollbarWidth: 11, dragMaxHeight: 30});
      } else {
        $("#contentArea").height(initialContentHeight);
      }
    }
  }
}
