$(document).ready(function(){
	// news-rotate startseite
	// typo3 anchor element vor jedem content raus!:
	//$('#rotate-box a').not( $('.rotate-item a') || $('#rotate-prevnext a') ).remove();
	// prev-next links dynamisch dazubauen:
	//$('#rotate-box').append('<div id="rotate-prevnext" style="position: absolute; bottom: 0px; right: 0px; z-index: 100;"><a href="javascript:;" id="prev-link"><img src="fileadmin/includes/themes/default/images/arrow-up.gif" alt="up" /></a> <a href="javascript:;" id="next-link"><img src="fileadmin/includes/themes/default/images/arrow-down.gif" alt="down" /></a></div>');
	//$('#rotate-box #rotate-prevnext').show();
	// let the fun begin:
	$('.image-box').cycle({
		// options siehe: http://malsup.com/jquery/cycle/options.html
		fx: 'fade',
		slideExpr: '.image-box-content',
		pause: 1,
		random: 1,
		timeout: 5000
		//prev:   '#prev-link', 
    	//next:   '#next-link'
    	// next: '#rotate-box .csc-textpic-imagewrap'
	});	
});