// initialise plugins
		jQuery(function(){
			//IE kann kein opacity und transparentes PNG kombinieren:
			if(jQuery.support.opacity) {
				var menuOp = 0.8;
			} else {
				var menuOp = 'show';
			}
			jQuery('ul.sf-menu').superfish({
					delay:         500,                // the delay in milliseconds that the mouse can remain outside a submenu without it closing 	
 					animation:     {opacity:menuOp,height:'show'},   // an object equivalent to first parameter of jQuerys .animate() method 					
	 				dropShadows:   true,               // completely disable drop shadows by setting this to false 	
					autoArrows:    false,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
					speed:         'fast'           // speed of the animation. Equivalent to second parameter of jQuerys .animate() method 
					});
		$('#kopfbilder').innerfade({
				speed:2000, 
				timeout: 6200, 
				type: 'sequence', 
				containerheight: '250px' 
				}); 
		});