//<![CDATA[
var quote=new Array();
  quote[0]='Make it Beautiful';    /* add as many quotes as you like!*/
  quote[1]='heaven in a wild flower...';
  quote[2]='Be Inspired';
  quote[3]='Live Well, Laugh Often, Laugh Much';
  quote[4]='Find the Beautiful';
  quote[5]='There is a pleasure in the pathless woods';
  quote[6]='Be Curious';
  quote[7]='The creation of beauty is art';
  

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

function showQuote() {

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