$(document).ready(function(){
    

    $('body#startseite .slideshow').cycle({
        fx:     	'fade',
        timeout:   10000,
				speed:     2000
    });

	$('.contentslideshow').cycle({
    	fx:     	'fade',
 			height:   'auto',
      timeout:   100000,
			speed:     1000,
			containerResize: 1,
			after:     onAfter,
    	prev:   	 '#prev',
    	next:    		'#next'
});

	$('.contentslideshowbreit').cycle({
    	fx:     	'fade',
 			height:   'auto',
      timeout:   100000,
			speed:     1000,
			containerResize: 1,
			after:     onAfter,
    	prev:   	 '#prev',
    	next:    		'#next'
});

    function onAfter(curr,next,opts) {
			var caption =  (opts.currSlide + 1) + ' / ' + opts.slideCount;
			$('#caption').html(caption);
		}
		



});
