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

}); 
