jQuery(document).ready(function() {
		//$('#one').cycle.defaults.timeout = 6000;
		var imageCount = document.getElementById("one").getElementsByTagName("img");
		var totalImages = imageCount.length + 1;
		$('#one').cycle({ 
    		fx:'fade', 
    		speed:2000,
			timeout:6500,
			delay:600,
			autostop:true,
			autostopCount:totalImages
 		});
		$('#two').cycle({ 
    		fx:'fade', 
    		speed:2000,
			timeout:6500,
			delay:1100,
			autostop:true,
			autostopCount:totalImages
 		});
		$('#three').cycle({ 
    		fx:'fade', 
    		speed:2000,
			timeout:6500,
			delay:1600,
			autostop:true,
			autostopCount:totalImages
 		});
		$('#newsrotator').cycle({ 
    		fx:'scrollLeft',
			speed:400,
			pause:true,
			pauseOnPagerHover:true,
			timeout:6500,
			delay:600
		});
});