$(document).ready(function() {testimonials();});


function testimonials() {
    var testimonials = jQuery("#container .testimonials");
    var lenght = testimonials.size();
    testimonials.eq(Math.floor(Math.random() * lenght)).show();
}


