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