
var quotes=new Array();

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='<p>&#8220;Cedric is an extremely active member of the community and is always willing to go the extra mile for us.&#8221;</p><p><em><strong>Pastor Otis Gordon</strong></em><br><em>of the Warren AME Church</em></p>';

var whichquote=Math.floor(Math.random()*(quotes.length));
document.write(quotes[whichquote]);



