// Settings
var testimonialTiming=1; //seconds
// end settings
var testimonial;
var testimonialIndex;
var testimonialCount;
$(document).ready(function(){
	testimonial=$(".testimonialContent").get();
	testimonialCount=testimonial.length;
	testimonialIndex=Math.floor(testimonialCount*Math.random());
	$("#"+$(".testimonialContent").get(testimonialIndex).id).fadeIn(testimonialTiming*1000);
});
function testimonialNext(){
	testimonialIndex++;
	if ( testimonialIndex == testimonialCount ) {
		testimonialIndex=0;
	}
	testimonial=$(".testimonialContent:visible").fadeOut(testimonialTiming*1000,function(){
		$("#"+$(".testimonialContent").get(testimonialIndex).id).fadeIn(testimonialTiming*1000);
	});
}
function testimonialPrev(){
	if ( testimonialIndex == 0 ) {
		testimonialIndex=testimonialCount;
	}
	testimonialIndex--;
	testimonial=$(".testimonialContent:visible").fadeOut(testimonialTiming*1000,function(){
		$("#"+$(".testimonialContent").get(testimonialIndex).id).fadeIn(testimonialTiming*1000);
	});
}

