$(function() {
	$('#testimonial').load('testimonialsrandom.html',function(){
    	var $quotes = $(this).find('div.testimonial');
    	var n = $quotes.length;
    	var random = Math.floor( Math.random()*n );
    	$quotes.hide().eq(random).slideDown(100);
	});
});

