// initialise plugins
		jQuery(function(){
			//IE kann kein opacity und transparentes PNG kombinieren:
			if(jQuery.support.opacity) {
				var menuOp = 0.9;
			} 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' 
				});

/// Hoover produktuebersicht:
$('DIV.csc-default ul.multicolumnLayout2').hover( 
		function(){ 
			$(this).addClass("listhover");
			},
  		function () {
			$(this).removeClass("listhover");
	  		});
/// ENDE HOOVER!

// ganze produktbox anklickbar machen:	
	$('ul.multicolumnLayout2').click(function() {
		  var linkziel = $(this).find('a:first').attr('href');
		  if(linkziel != undefined) {
			  // fix wegen coolURI...
		  	document.location.href = document.location.protocol + "//" + document.location.host +"/" + linkziel;
		  }
	});		
		
// end document.ready
});
