jQuery().ready(function() {  

	jQuery('#rotate-graphic').cycle({ 
	fx:    'fade', 
	speed:  'slow',
	timeout: 5000,
	pager: '#HomeRotationPager',
	prev: '.rotate-prev',
	next: '.rotate-next',

	pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#HomeRotationPager li:eq(' + idx + ') a'; 
    }

	});

	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'); 
	});

	jQuery('#rotate-graphic').show();

}); 
