// jQuery
jQuery.noConflict();
jQuery(document).ready(function() {

	// Referenzbilder-Fade-FX
	jQuery(".csc-textpic-imagerow-last").css("position", "absolute");
	var jS = jQuery('.csc-textpic-imagerow-last');
	jS.hide(); // not needed if css hides elements initially
	var i = 0;
	function do_ticker() {
		jS.eq(i)
		.animate( { display:"none" } , 2000 )
		.fadeIn(1000, function() {
			var me = jQuery(this);     
			setTimeout(function() { me.fadeOut(1000, 
				function() { 
					i = ++i % jS.length;
					do_ticker();
				});
			},2000); // setTimeout
		});
	};
	do_ticker();



});





















