There was an awesome, super-minimal testimonial rotator that I found here, but I'm curious as to how I might get it to simply randomize the results. Here's the rotator as it now functions:
$('.testimonials div:first').show();
setInterval(function(){
$('.testimonials div:first-child')
.fadeOut(1000)
.next('div')
.delay(1000)
.fadeIn(1000)
.end()
.appendTo('.testimonials')
},3000);
Try this:
Demo: http://jsfiddle.net/JWGbz/6/