/* Author: 

*/

// The current testimonial being displayed
var currentTestimonial;


$(document).ready(function(){
	
	// Hide 2nd and 3rd quote
	
	$(".quoteblock").not(':eq(0)').hide();
	currentTestimonial = 0;
	
	fadeTestimonialOut();
});


function fadeTestimonialOut(){

	$(".quoteblock").eq(currentTestimonial).delay(6000).fadeOut('slow', function() {
		
		currentTestimonial == $(".quoteblock").length-1 ? fadeTestimonialIn(0) : fadeTestimonialIn(currentTestimonial+1);
	});	
}


function fadeTestimonialIn( target ){
	
	$(".quoteblock").eq(target).fadeIn('slow', function() {
		
		currentTestimonial = target;
		fadeTestimonialOut();
	});	
	
}


















