$(document).ready(function(){

	$('.slideshow').cycle({ 
    	fx:     'fade', 
    	speed:  '500', 
    	timeout: 20000, 
    	next:   '#next2', 
    	prev:   '#prev2',
    	after:   onAfter 
	});
	
	
	
	$('.csc-textpic-image csc-textpic-firstcol a, .csc-textpic-image a, .csc-textpic-image csc-textpic-lastcol a').fancybox({
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300,
	    'overlayOpacity' 		: 0.5,
	    'padding'				: 0,
		'hideOnContentClick' 	: true
	});
	


});
//bildunterschrift bei der slideshow
function onAfter() {
    $('.output').html('<span class="hidden">'+ this.src + '</span>')
        .append('<div class="imagealt"><h3>' + this.alt + '</h3></div>');
}

