	$(document).ready(function() {
		
		/* detach empty links, workaround for typo3 misfunction */
		$('.slideshow a:empty').detach();
		$('.slideshow .csc-textpic-clear').detach();
		
		/* Set pictures hideable and backup pictures which are inside of the container but should not be faded */
		$('.slideshow .csc-textpic').addClass("hideable");
		bkp = $('.slideshow .csc-textpic').detach();
		
		
		
		$('.slideshow').cycle({
			fx: 'fade',
			random: 1,
			timeoutFn: calculateTimeout
		});
		
		/*Prepend backuped pictures which should not be slided*/
		$('.bigbox:first').prepend(bkp);
		
		/*add some background to the slider*/
		//$('.slideshow').parent().css('background-color', '#fff');
	});
	
	var timeouts = [9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9]; 
	function calculateTimeout(currElement, nextElement, opts, isForward) { 
	    var index = opts.currSlide; 
	    return timeouts[index] * 1000; 
	} 


