$(document).ready(function() {				
		
	$("a.popup").fancybox();
	$("#galerie #bilder a").fancybox({ 
		'cyclic': true,
		'hideOnContentClick': true,
	});

 	$(".inline-popup").fancybox({ 'modal': false, 'titleShow': false, 'overlayColor': '#111' });
	

	/* Galerie */
	/*
	$('#galerie .doku-box').hide();
	$('#galerie #doku-storyboards.doku-box').show();				
	*/
	/*
	$('#galerie #auswahl a').each(
		var target = $(this).attr('href');
		$(this).removeAttr('href');
		$(this).attr('id', target);
	);
	
	$('#galerie #auswahl a').click(function(){
		var target = $(this).attr('id');
		$('.doku-box').hide();
		$(target).show();
	});
	*/
	
});

