$(document).ready(function() {
	$("#header ul li a").hover(function(){
		$(this).children("span").fadeIn("fast");
	},function(){
		$(this).children("span").fadeOut("fast");
	});
	$("#Kopfbild h1").fadeIn("slow");
	$(".acc *").not("h2").slideUp("slow");
	$(".acc h2").click(function(){
		$(this).parent(".acc").children("*").not("h2").slideToggle("fast");
	});
	$("#right li a").fancybox({
		'titleShow'		: false,
		'width'				: 400,
		'height'				: 300,
		'autoScale'			: false,
		'autoDimensions':false
	});
});
