$(document).ready(function() {	jQuery.extend( jQuery.easing,	{		easeOutQuad: function (x, t, b, c, d) {			return -c *(t/=d)*(t-2) + b;		}	});
	/* Intro-Block bei klick auf logo ausblenden */
	$("#block-block-6").click(function() {
		fadeOutIntro();
	}); 		/* Kreis  animieren */	$(".intro-kreis").animate({		top: "290px",		left: "362px"	}, 2500, "easeOutQuad" );		$(".intro-kreis-bild").animate({		width: "20%",		height: "20%"	}, 2500, "easeOutQuad" );
});

/* Intro-Block nach 5 Sekunden automatisch ausblenden */ 
setTimeout("fadeOutIntro()", 3500);

/* Intro-Block ausblenden */
function fadeOutIntro() {
	$("#block-block-6").fadeOut(1500);
}
