/*<![CDATA[*/

$(document).ready(
  function() 
  {
    
    $(window).resize(function() {
      iWindowHeight = $(window).height();
      iContentHeight = $('head').height() + $('body').height() + $('footer').height() - parseInt($('#body').css('paddingBottom'));
      
      iDiff = iWindowHeight - iContentHeight;
      if (iDiff > 0)
      {
        iPadding = iDiff;
      } else {
        iPadding = 0;
      }
      $('#body').css('paddingBottom', iPadding+'px');
    });
    $(window).trigger('resize');    
    
    $('a.fancybox').fancybox();
    
    $('table.Tabelle_blau tr td:first').addClass('first');
    $('table.Tabelle_blau tr td:last').addClass('last');
  }
);
/*]]>*/
