


// *****************************************************************************

// PNG-Fix
$(document).ready(function(){ 
   $(document).pngFix(); 
}); 


// *****************************************************************************



// Image Resize
$(document).ready(function(){	


 //aktuelle Fenstergröße abfragen
  if (navigator.appName.indexOf("Netscape") != -1){
    Fh = window.innerHeight;
    Fb = window.innerWidth;
  }
  else{
    Fh = document.body.clientHeight;
    Fb = document.body.clientWidth;
 }

  
  
   
  $("#supersize img").imagetool({
   viewportWidth: Fb,
   viewportHeight: 382,
   imageWidth: 2272,
   imageHeight: 476,
   loading: "layout/img/loader.gif",
   allowPan: false,
   allowZoom: false,
   maxWidth: 4000
  });
 
  /*
  $("#supersize img").imagetool({
   viewportWidth: Fb,
   viewportHeight: 382,
   imageWidth: 2272,
   imageHeight: 476,
   loading: "layout/img/loader.gif",
   allowPan: false,
   allowZoom: false,
   maxWidth: 4000
  });
  */
  /*
  $("#supersize img").imagetool({
   viewportWidth: Fb,
   viewportHeight: 382,
   imageWidth: 2272,
   imageHeight: 476,
   loading: "layout/img/loader.gif",
   allowPan: false,
   allowZoom: false,
   maxWidth: 4000
  });
  */
  $("#supersize img").css("display","block"); 
  
  
   // Lightbox
   $("a[rel^='lightbox']").lightBox();
  
});
