function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}

var quote=new Array();
  quote[0]='&#8220;It helped me realize that I can’t see myself doing anything else besides farming. I really want to be a part of this business.&#8221; <br><span class="QuotePerson">- Jeremy Moore, Youth Leadership Derby participant.</span>';
  quote[1]='&#8220;It&#8217;s a good experience in order to get out of your comfort zone and meet someone different.&#8221; <br><span class="QuotePerson">- Ashley Sprengeler, student participant in mentor program</span>';
  quote[2]='&#8220;I enjoyed the hands-on activities, and the dairy industry leaders available to us were awesome. The Derby presented a variety of careers in a fun manner!&#8221; <br><span class="QuotePerson">- Lauren Holterman, High School Senior, Watertown</span>';

var speed=10000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

setInterval('showQuote()',speed);
