// JavaScript Document

$(document).ready(function(){

	$(".testimonials").load("/testimonials/index.html .pages .group", function() {
		
		showing = $(".testimonials div.group:first"); // Initiate the showing variable as the first rotating_item
		showing.siblings('div.group').hide(); // Hide all other rotating_items
		
		var itemSum = $(".testimonials .group").size();
		var count = 0;
	
		rotateSwitch = function(){
			play = setInterval(function(){ //Set timer - this will repeat itself every N seconds
				
				$(".testimonials .group").eq(count).fadeOut(1000, function() {
					count += 1;
					if(count == itemSum) {
						count = 0;
					}
					$(".testimonials .group").eq(count).fadeIn(1000);
				});			
			}, 7000); //Timer speed in milliseconds
		};
		
		rotateSwitch(); //Run function on launch
		
		$(".testimonials").click(function(){
			location.href = '/testimonials/'; 
		});
	});
	
});
