//<![CDATA[$(document).ready(function(){  setheight();  function setheight() {    var pagesize = TB_getPageSize();    var ww = pagesize[0];    var wh = pagesize[1];    if (ww >= '856'){      if (wh >= '500'){        if ($.browser.msie && $.browser.version >= 6){          $("html").css({ "overflow":"hidden" , height : wh });        } else {          $("html").css({ height : wh });        };        var hh = parseInt($("#head").css("height"));        var fh = parseInt($("#foot").css("height"));        var gh = (hh + fh + 25);        var nh = (wh - gh);        $("body").css({ "overflow":"hidden", height : wh });        $("#foot").css({ position:"absolute", bottom:"0", left:"50%", "margin-left":"-428px" });        $("#scroller").css({ height: nh+"px" });      };    };  };  $(window).bind('resize', function() {    if ($.browser.msie && $.browser.version < 6){      return false;    };    $("body").css({ "overflow":"visible", height : "auto" });    $("#foot").css({ position:"static", bottom:"auto", left:"auto", "margin-left":"0" });    $("#scroller").css({ height: "auto" });    setheight();    return false;  }).trigger('resize');// Lightbox aktivieren//  $('#foot ul a').lightBox();//  $('#gallery a').lightBox();//  $('.bild a').lightBox();// ENDE Lightbox});function TB_getPageSize(){  var de = document.documentElement;  var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth);  var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight);  arrayPageSize = new Array(w,h);  return arrayPageSize;};//]]>
