// JavaScript Document
$(document).ready(function(){	  
	$('#s1').cycle({ 
		fx:	'fade', speed: 500, timeout: 3000
	 });
	
	$('#s2').cycle({ 
	 fx: 'fade', speed: 500, timeout: 3000
	 });
	
	$('#s3').cycle({ 
	   fx: 'fade', speed: 500, timeout: 3000
	 });
});
