jQuery(function(){

	$.fn.cycle.defaults.timeout = 8000;
	$('#features_rotator').cycle({
		fx: 'fade'
	});
	
	$.fn.cycle.defaults.timeout = 16000;
	$('#performance_rotator').cycle({
		fx: 'fade',
		next: '#next', 
	    prev: '#prev'
	});
	
});