	$(document).ready(function() {
		
		$('.nav').css('display','none');
		$('#kurz_gallery ul').galleria({
			history:false,
			clickNext:false,
			insert:undefined,
			onImage:function(){
				$('.nav').css('display','block')
				;}
			});
		$('img.thumb').css('cursor','pointer');

		$('.AufklappInhalt').hide();
		
		$('.AufklappInhaltKopf').click(function() {
			$(this).next('.AufklappInhalt').toggle("blind", { direction: "vertical" }, 750);
			return false;
		});

		$(".accordion").accordion({
			autoHeight: false,
			active: false,
			collapsible: true,
			animated: false
		});
	
			$('.slideshow').cycle({
			fx:     'fade', 
			speed:   300, 
			timeout: 1000, 
			next:   '.slideshow', 
			pause:   1 
	});



	});
