var Quotation=new Array() 
Quotation[0] = "<i style=\"color: #f25e21\";>This is the best devotional I have ever read. Our congregation has been using The Word for You Today for over five years. It's a great gift to visitors and new converts. I highly recommend it to every pastor and congregation who wants to grow deep in the word.</i><i><br /><br /><b>Jentezen Franklin</b><br />Free Chapel, Gainesville, GA</i>";
Quotation[1] = "<i style=\"color: #f25e21\";>...as a church, we can all be on the same page with our devotional. That is exciting to me... I believe this is a gift from God for our church.</i><i><br /><br /><b>Mac Brunson</b><br />First Baptist, Jacksonville, FL</i>";
Quotation[2] = "<i style=\"color: #f25e21\";>I love The Word For You Today. It has been a blessing to our church and an outreach to the community, especially our prison population.</i><i><br /><br /><b>Beverly Crawford</b><br />Bible Enrichment Fellowship, Inglewood, CA</i>";

var Q = Quotation.length;
var rand = Math.random()
var whichQuotation=Math.floor(rand*(Q));

function showQuotation(){
	
	document.write(Quotation[whichQuotation]);
}
