$(document).ready(function(){
	$(".testimonials > div").hide();
	var size = $(".testimonials > div").size();					   
	var show = Math.floor(Math.random()*size);
	//alert(size+'< - >'+show);						   
	$(".testimonials > div").eq(show).fadeIn('fast');

}); 
