﻿$(function(){ 
$('.testimonial ul li').hide();
$('.testimonial ul li:first').show(); 
Rotate();
});

function Rotate(){
var current = $('.testimonial ul li:visible');
var next = current.next().length ? current.next() : current.parent().children(':first'); 
current.hide();
next.show();
setTimeout(Rotate, 6000);
} 
