// select a random testimonial
var quotes = new Array();

quotes[quotes.length] = {quote:'The illustrations in the Ear book save me so much time explaining.  It’s a big parent satisfier, too!',author:'Jeff, M.D., pediatrics'};
quotes[quotes.length] = {quote:'We have found your board books to be excellent educational tools for residents to use in patient teaching.',author:'Kathy W., RN'};


function getQuote() {
	if (!document.getElementById("randomQuote")) return false;
	var currentIndex = Math.floor(Math.random() * (quotes.length));
	var q = '<p class="quote">&ldquo;' + quotes[currentIndex].quote + '&rdquo;</p>';
	q += '<p class="author">&mdash;' + quotes[currentIndex].author + '</p>';
	document.getElementById("randomQuote").innerHTML = q;
}