$(function() {
	rove_testimonial_init();
});

function rove_testimonial_init() {
	setInterval( rove_testimonial_rotate, 7000 );
}

function rove_testimonial_rotate() {
	var $testimonials = $('#testimonial-block .testimonial-row');
	var $shown = $testimonials.filter(':visible');
	var $next = $shown.next('.testimonial-row');
	if($next.length == 0)
		$next = $testimonials.eq(0);
	$shown.hide();
	$next.fadeIn();
}

