$(document).ready(function() {
$('.testimonial-random').load("testimonial-random.html",function(){
var $quotes = $(this).find('.testimonial');
var n = $quotes.length;
var random = Math.floor( Math.random()*n );
$quotes.hide().eq(random).show();
	});

$('.faq-random').load("faq-random.html",function(){
var $quotes = $(this).find('.faq');
var n = $quotes.length;
var random = Math.floor( Math.random()*n );
$quotes.hide().eq(random).show();
	});
});

