‹‹ cycle homejQuery Cycle Plugin - Alternative Prev/Next Demo

$(document).ready(function() {

	$('#s1').cycle({
	    timeout: 0
        fx:     'scrollDown',
        easing: 'easeInOutBack',
        speed:  'slow'
	});
	
	$('button:eq(0)').click(function() {
		$('#s1').cycle('prev'); 
	});
	
	$('button:eq(1)').click(function() { 
	    $('#s1').cycle('next'); 
	});

});