$(document).ready(function() {
	$('#carousel').infiniteCarousel({
		displayTime: 15000,
		transitionSpeed: 1200,
		easeLeft: 'easeInOutExpo',
		easeRight: 'easeInOutExpo',
		autoStart: true,
		showCaptions: false
	});
	
	
	
	$('#updates').cycle({ 
    fx:     'scrollHorz', 
    speed:  'slow', 
    timeout: 0, 
    next:   '#next', 
    prev:   '#prev' 
});




 var rotator_count = 0;
    $('.content_rotator').each(function(){
		$(this).after('<div id="controls_'+rotator_count+'" class="controls">').cycle({
			fx:     'scrollHorz',
			speed:  600,
			timeout: 0,
			pager:  '#controls_'+rotator_count
		});
		rotator_count++;	
	});
		
		
});
