
$(document).ready(function(){
 
	$('#fd1').fadeIn(2000);
	$('#fd2').fadeIn(2000);
	$('#fd3').fadeIn(2000);
	$('#fd4').fadeIn(2000); 
	$('#fd5').fadeIn(2000);
	$('#fd6').fadeIn(2000);
	$('#fd7').fadeIn(2000);
	$('#fd8').fadeIn(2000);
	$('#fd9').fadeIn(2000);
	$('#fd10').fadeIn(2000);
	$('#fd11').fadeIn(2000);
	$('#fd12').fadeIn(2000);
});

   function fenster_flex(seite,weite,hoehe) 
   {
   window.open(seite,"x","resizable=yes,scrollbars=yes,menubar=no,toolbar=no,width="+weite+",height="+hoehe+",top=10,left=10");
   }
 
   function fenster2(seite) 
   {
   window.open(seite,"flyout","resizable=yes,scrollbars=yes,menubar=no,toolbar=no,width=720,height=460,top=100,left=40");
   }
   

 
function showPic (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('placeholder').src = whichpic.href; 
		if (whichpic.title) { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title; 
		} else { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 
		} 
		return false; 
	} else { 
		return true; 
	} 
}


function PopUp(w,h,ziel) {
   h = h - 20; var x=0, y=0, parameter="";
   if (w < screen.availWidth || h < screen.availHeight) {
     x = (screen.availWidth - w - 12) / 2;
     y = (screen.availHeight - h - 104) / 2;
     if (window.opera) y = 0; // Opera positioniert unter den Symbolleisten
     if (x<0 || y<0) { x=0; y=0; }
     else parameter = "width=" + w + ",height=" + h + ",";
   }
   parameter += "left=" + x + ",top=" + y;
   parameter += ",menubar=no,location=no,toolbar=no,status=no";
   parameter += ",resizable=yes,scrollbars=yes";
   var Fenster = window.open(ziel,"PopUp",parameter);
   if (Fenster) Fenster.focus();
   return !Fenster;
 }

