var myQuotes = new Array();
myQuotes[0] = "quote1.html";
myQuotes[1] = "quote2.html";

var myRandom = Math.floor(Math.random()*myQuotes.length);

$(document).ready(function () {
	$(".testimonials-content").load(myQuotes[myRandom]);
});

