function resizeWindow()
{
  $('#content-area').css('height', null);

  var diff = $(window).height() - $('body').innerHeight();

  if (diff > 0) {
    if ($('#index-area').size()) {
      $('#index-area').css('height', ($('#index-area').innerHeight() + diff - 32) + 'px');
    } else {
      $('#content-area').css('height', ($('#content-area').innerHeight() + diff) + 'px');
    }
  }
}

$(
  function()
  {
    $("#mainmenu").superfish(
      {
        animation:    {opacity: 'show', height: 'show'},
        autoArrows:   false,
        delay:        0,
        dropShadows:  true,
        hoverClass:   'sfHover',
        speed:        'fast'
      }
    );
    resizeWindow();
  }
);
$(window).resize(function() {resizeWindow();});
