//<![CDATA[
var qty=12; /* The number of quotes you have in total; add one to last array number on array list */

var quote=new Array(); /* add as many quotes as you like!*/
quote[0]='"I always thought places like this were in the middle of nowhere, but now I realize they are somewhere"<br><br>Student<br>YouthBuild Springfield';
quote[1]='"It is important for young people to have experiences like these because it lets them know and learn more about the environment and seek interest in their future…"<br><br>Student<br>YouthBuild Lowell';
quote[2]='"Well, I didn\'t really believe you. I didn\'t believe that I would like working outside, out here in nature, but now I can see that I might be into it"<br><br>Student<br>YouthBuild Cambridge';
quote[3]='"What was important to me about today\'s experience was that I was able to go with my peers and environmental supporters and give back. It made me feel good."<br><br>Student<br>YouthBuild Springfield';
quote[4]='"My favorite part about today was helping out with the trees and taking down the ones that are dead or hurting other trees."<br><br>Student<br>YouthBuild Springfield';
quote[5]='"All of this is great, I\'m going to have my students do this activity and write more about nature in the classroom."<br><br>Educator<br>YouthBuild Brockton';
quote[6]='"This is a very important experience for children because this educates them to help keep the water clean in the future."<br><br>Student<br>Malden YMCA';
quote[7]='"Because city people take water for granted"<br><br>Student<br>Mission Hill Summer Program';
quote[8]='"I learned that my friends cared about nature"<br><br>Student<br>Worchester Youth Center';
quote[9]='"Nature cannot heal itself as well as in the past. It is time we help, and give back what we took."<br><br>Youth Worker<br>YouthBuild';
quote[10]='"To me, the most important part of my day was the whole experience. Learning about how important water is, and how limited it can become."<br><br>Student<br>River Ambassador Program';
quote[11]='"I am convinced that the LAF program will translate into greater stewardship of the urban forest for the participants and enrich the Ithaca community."<br><br>Andy Hillman, Champion<br>City of Ithaca Department of Public Works';


var speed=5000;    /*this is the time in milliseconds adjust to suit*/
var q=Math.floor(Math.random()*qty)		/* This pulls out a random quote from list to start with */

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=Math.floor(Math.random()*qty);
  }
}
setInterval('showQuote()',speed);
   
 //]]>
