$(function(){
	$('#testimonial div:gt(0)').hide();
	setInterval(function(){
		$('#testimonial div:first').fadeOut().next().fadeIn().end().appendTo('#testimonial');
	},3000);

});
