$(document).ready(function() {

	var quotes = $('#new-testimonials blockquote');
	
	quotes.hide().eq(0).show();
			
	setInterval(function() {
			
		quotes.filter(':visible').fadeOut(600, function() {
		
			if ( $(this).next('blockquote').size() ) {
				$(this).next().fadeIn(600);
			}
			else {
				quotes.eq(0).fadeIn(600);
			}
		});
		
	}, 10000);
		
});
