$(document).ready(
	
		function(data){
				
				var fadeSpeed = 2000;
				var sDelay = 500;
			
				function InOutthree( elem )
				{
				 elem.delay(sDelay)
					 .fadeIn(fadeSpeed)
					 .delay(sDelay)
					 .fadeOut(
	
								  function(){
										 if(elem.next().length > 0) // if there is a next element
										   {InOutthree( elem.next() );} // use it
										 else
										   {InOutthree( elem.siblings(':first'));} // if not, then use go back to the first sibling
							
									   }
									   
	         );
				}
			
			$('#rotatorthree li').hide();
			InOutthree(	$('#rotatorthree li:first')	);
			
		}
	
	);
