$(document).ready(function(){
	animateDiv();
	setInterval ('animateDiv()', duration * $(myList).length);
});

var myList = '#testimonialList ul li';
var duration = 7000; //Feel free to change this (milliseconds)

function animateDiv() {
	$(myList).each(function(index) {
		var quote = $(this).find('.quote').text();
		var author = $(this).find('.author').text()
		setTimeout(function() {
			$('#testimonialQuote, #testimonialAuthor').fadeOut('slow', function() {
				$('#testimonialAuthor').text(author).fadeIn('slow');
				$('#testimonialQuote').text(quote).fadeIn('slow');
			});
		}, index * duration);
	});
}
