/**jQuery.noConflict();***/
jQuery(document).ready(function ($) {
   // Rotator
	var rotatorspeed = 4000;
	function cycle(){
		$('.rotate div:last').fadeOut(500, function() { $(this).remove().prependTo('.rotate').show(); } );
	};
	setInterval(function(){ cycle(); },rotatorspeed);	
});

