/**
 * @author web
 */
$(document).ready(function()
{
	setInterval(rotateTestimonials, 8000);
}
);


function rotateTestimonials()
{
	var currentTestimonial = $(".testmonialBox:visible:first");
	
	if(currentTestimonial.length == 0)
	{
		currentTestimonial = $(".testmonialBox:first");
	}
	
	var nextTestimonial = currentTestimonial.next(".testmonialBox:first");
	if(nextTestimonial.length == 0)
	{
		nextTestimonial = $(".testmonialBox:first");
	}
	
	currentTestimonial.fadeOut("fast",	function()
										{
											nextTestimonial.fadeIn("fast");
										});
	/*currentTestimonial.hide("fast");
	nextTestimonial.show("fast");*/
	//return false;
}

