var quote=new Array();
  quote[0]='I know of no more encouraging fact than the unquestionable ability of man to elevate his life by conscious endeavor. <i>-Henry David Thoreau</i>';    /* add as many quotes as you like!*/
  quote[1]='Let us not be content to wait and see what will happen, but give us the determination to make the right things happen. <i>-Peter Marshall</i>';
  quote[2]='Do not let what you cannot do interfere with what you can do. <i>-John Wooden</i>';
  quote[3]='High achievement always takes place in the framework of high expectation. <i>-Jack Kinder</i>';
  quote[4]='Drink water. <i>-Patrick</i>';
  quote[5]='The words printed here are concepts. You must go through the experiences. <i>-Carl Frederick</i>';
  quote[6]='As I grow older, I pay less attention to what men say. I just watch what they do. <i>-Andrew Carnegie</i>';
  quote[7]='Let us not be content to wait and see what will happen, but give us the determination to make the right things happen. <i>-Peter Marshall</i>';
  quote[8]='If there is something to gain and nothing to lose by asking, by all means ask! <i>-W. Clement Stone</i>';
  quote[9]='Little minds are tamed and subdued by misfortune; but great minds rise above them. <i>-Washington Irving</i>';

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

function showQuote() {

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

