$(function()
{
	$('.Rotor1').cycle({  	//LEFT SLIDE
		fx: 'fade', 		//Transition type
    	timeout: 5000,
		delay:  -0
	});
	$('.Rotor2').cycle({  	//MIDDLE SLIDE
		fx: 'fade',
    	timeout: 5000,
		delay:  -2000		//Delay (in milliseconds) before animation starts, to stagger the transitions
	});
	$('.Rotor3').cycle({  	//RIGHT SLIDE
		fx: 'fade',
    	timeout: 5000,
		delay:  -4000
	});
});