
$(function() {
	var forScreenReader = function(e,n)
	{
		$(n).find('a').focus();
	}
	$('#mainCarousel ul').cycle({ 
		fx:	 'scrollHorz', 
		speed:  'slow', 
		timeout: 0,
		easing: 'easeOutCubic',
		next:   '#mainCarousel .next', 
		prev:   '#mainCarousel .prev',
		after: forScreenReader
	});
	$('#mainCarousel').css('visibility', 'visible');
});
