jQuery().ready(function() {  	jQuery('#rotate-graphic').cycle({ 	fx:    'fade', 	speed:  'slow',	timeout: 7000,	prev: '.rotate-prev',	next: '.rotate-next',	delay: 1000	});		jQuery('.rotate-pause').click(function() { 		jQuery('#rotate-graphic').cycle('pause'); 	});	jQuery('.rotate-prev').click(function() { 		jQuery('#rotate-graphic').cycle('pause'); 	});	jQuery('.rotate-next').click(function() { 		jQuery('#rotate-graphic').cycle('pause'); 	});}); 
