// JavaScript Document

var quote=new Array();
  quote[0]='"It is very anointed... you have managed to capture something unique... so far ahead of its time."';    /* add as many quotes as you like!*/
  quote[1]='"There is a new sound - it\'s the sound of heaven that our spirits crave. The songs that God give you are going to be broadcast around the world because people are waiting to hear the sound." Judy Gossett';
  quote[2]='"I love the anointing on your project. You have definitely found a stream in the river. It will undoubtably bless many people." Judy Gossett';
  quote[3]='"I was spiritually dehydrated. Your music has truly touched my life." Olivia Hyer';
  quote[4]='"Thank you so much for letting me download these songs. I could not afford them otherwise right now. My heart just resonates with your music. Thank you again for your generosity." Jean Beecher';

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);
   
