$(document).ready(function() {

  var gbOptionen = 
   {
    gbWidth: 965,
    gbHeight: Fensterhoehe (),
    captionHeight: 22,
    ffMacFlash: true
   };


$('a[href*=index.php?shop=]').greybox(gbOptionen);

}); // ready


function Fensterhoehe () {


	var meineHoehe = parseInt(getBody(window).clientHeight);
	
	//Nur fuer den fall das das obere nicht geht ...
	if (meineHoehe == null){ 
		  meineHoehe = hoehe(); 
	}

	if (meineHoehe == null){ 
		return 600;
	}else{
		return meineHoehe-((meineHoehe*10)/100); 
	}

}

function getBody(w) 
{ 
    return (w.document.compatMode && w.document.compatMode == "CSS1Compat") ? w.document.documentElement : w.document.body || null; 
} 


function hoehe () 
{
  if (window.innerHeight) 
     {
      return window.innerHeight-((window.innerHeight*10)/100); 
     } 
  if (document.body && document.body.offsetHeight) 
     {
      return document.body.offsetHeight-((document.body.offsetHeight*10)/100);
     } 
}

