// JavaScript Document

var quote=new Array();
  quote[0]='"They are, quite honestly, some of the best worship songs I\'ve ever heard." Suzy Mitchell, Worship Leader, USA';   
  /* add as many quotes as you like!*/
  quote[1]='"It touches something deeper in the soul ...... I cannot stop listening to it."';
  quote[2]='"Words can not convey just how blessed we truly are with your music" William & Bonnie Gore, Canada';
  quote[3]='"It is without a doubt some of the most beautiful music I have ever heard on earth.  No one in and of themselves could just come up with it.  You HAD to have gotten it from God." Charlie & Shean, USA';
  quote[4]='"There is a spirit of worship that enables me to personally enter in." Veteran Pastor Gary Ellis, USA';

var speed=6000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
