$(document).ready(function(){
	$('#home-video').click(function(){
		$('#pop-home-video').show();
		$('#pop-home-video object').css({'visibility':'visible'});
		$.pageOverlay().show('#pop-home-video');
	});
	
	$('#cbs-video').click(function(){
		$('#pop-cbs-video').show();
		$('#pop-cbs-video object').css({'visibility':'visible'});
		$.pageOverlay().show('#pop-cbs-video');
	});
	
	function itemRotator(container, speed, range, i)
	{
		var total = $(container).children('li').length;
		var current = i ? i : 0;
		var currentRange = (current + range) < total ? current + range : total;
		
		var prev = current == 0  ? total - (total % range !== 0 ? total % range : range) : current - range;
		var prevRange = current == 0 ? total : current;
			
		var next = (currentRange) < total ? currentRange : 0;
		
		$(container + ' li').slice(prev, prevRange).fadeOut('400',function(){
			$(container + ' li').slice(current,currentRange).fadeIn('500');
		});
		
		setTimeout(function(){itemRotator(container,speed,range,next);},speed);
	};
	
	itemRotator('#acts-partners',7000,3);
	itemRotator('#testimonials',9000,1);

});

