$(document).ready(function() {
	var myQuotes = new Array();
	myQuotes[0] = "<p>&ldquo;I love my trumpet teacher. He is really patient and teaches me a lot.&rdquo;</p>- Joey<span> | </span>Lenexa, KS";
	myQuotes[1] = "<p>&ldquo;The people at REW are extraordinary. One of the great secrets of this area.&rdquo;</p>- Janene<span> | </span>Olathe, KS";
	myQuotes[2] = "<p>&ldquo;Great store with a large selection of musical instruments and supplies in stock and if they don’t have it in store you can bet they’ll order it for you.&rdquo;</p>- Jake<span> | </span>Lenexa, KS";
	

	var myRandom = Math.floor(Math.random()*myQuotes.length)

	$('#quote').html(myQuotes[myRandom]);
});
