//<![CDATA[
var quote=new Array();
  quote[0]='"If you want to feel rich, just count the things you have that money can\'t buy"<br> ~Proverb';    
  quote[1]='"Time is more valuable than money. You can get more money, but you cannot get more time."<br> ~Jim Rohn';
  quote[2]='"You can only become truly accomplished at something you love. Don\'t make money your goal. Instead, pursue the things you love doing, and then do them so well that people can\'t take their eyes off you."<br> ~Maya Angelou';
  quote[3]='"Money never made a man happy yet, nor will it. The more a man has, the more he wants. Instead of filling a vacuum, it makes one."<br> ~Benjamin Franklin';
  quote[4]='"The art is not in making money, but in keeping it."<br> ~Proverb';
  quote[5]='"Money often costs too much."<br> ~Ralph Waldo Emerson';
  quote[6]='"Money will buy you a fine dog, but only love can make it wag its tail" ~Richard Friedman';
  quote[7]='"A penny saved is a penny earned."<br> ~Benjamin Franklin';
  quote[8]='"Money doesn\'t grow on trees"<br> ~Proverb';
  quote[9]='"I\'m living so far beyond my income that we may almost be said to be living apart." <br>~e e cummings';

var speed=10000;    /*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);
   
 //]]>
