$(document).ready(function(){
    var length = $('.testimonial').length;
    var index = Math.ceil(Math.random() * length);
    $('.testimonial').eq(index-1).show();
});
