$('document').ready(function() {
	$('#sfstest-sidebar blockquote').first().fadeIn();
	
	setTimeout('switchTestimonial()', 8000);
});

function switchTestimonial() {
	var current = $('#sfstest-sidebar blockquote:visible');
	var next = current.next();

	current.fadeOut(function() {
		if(next.length > 0) {
			next.fadeIn();
		} else {
			$('#sfstest-sidebar blockquote').first().fadeIn();
		}
	});
	setTimeout('switchTestimonial()', 15000);
}
