$(document).ready(function() {
	$.fn.cycle.defaults.timeout = 6000;
	$(function() {
			  
		$('#s1').cycle({
			fx:    'fade',
			speed:   900,
			delay: -1000,
			timeout: 4000
		});
		
		$('#s10').cycle({
			fx:    'fade',
			speed:   900,
			delay: -1000,
			timeout: 4300
		});
		
		$('#banner').cycle({
			fx:    'fade',
			speed:   900,
			delay: -1000,
			timeout: 5000
		});

		
		$('#s2').cycle({
			fx:    'fade',
			speed:   900,
			delay: -1000,
			timeout: 4300
		});
		
		$('#s3').cycle({
			fx:    'fade',
			speed:   5000,
			delay: -1000,
			timeout: 1000
		});	

	});
});