 function quote() {
//Random Quotes
} ; q = new quote() ; n = 0

// Quote database------------------------------------
q[n++]= "This book speaks for itself.  It says everything that needs to be said to associate ministers. <p>Rev.Adam P. Crews"

q[n++]= "I have made it mandatory reading for all of my ministers.<p>Rev. Adam P. Crews Pastor of First Baptist Church, Covington, KY"

q[n++]= "I have made it mandatory reading for all of my ministers. <p>Rev. Caliph Wyatt, Pastor of Monroe Baptist Church, Bellwood, IL"

q[n++]= "Every minister, ministry leader and church staff person should read this book. <p>Rev. Marvin E. Wiley, Pastor, Rock of Ages Baptist Church, Maywood, IL"

q[n++]= "Well-written, easy to read and digest, I&#146;m taking my entire ministerial staff through this book. <p>Rev. Leroy Armstrong, Pastor of St. John Missionary Baptist Church, Dallas, TX" 

q[n++]= "I&#146;m recommending Rev. Copeland&#146;s book to church leaders everywhere I go. <p> Dr. Joel Gregory, author, scholar, and former pastor of First Baptist Church, Dallas, TX"

i=Math.floor(Math.random() * n) ; 

document.write( q[i] );
