function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}

var quote=new Array();
  quote[0]='<b>The dairy industry needs a "neutral ground" on which to meet.</b> Education-the "legacy of learning" for the dairy industry--is a unifying point.';
  quote[1]='<b>Everyone in the dairy product chain, through the consumer, is a professional</b> and should be treated as valued colleagues.';
  quote[2]='<b>Education is the key to the success</b> of individuals, businesses, industry and communities.';
  quote[3]='<b>Passion for the dairy industry makes all the difference.</b> While funding can play an important role in getting a program started or making it more successful, ultimately it is the passion and commitment of those involved that is the greatest success factor.';
  quote[4]='<b>Collaboration is essential.</b> The dairy industry is made up of many organizations and voices. We do not seek to compete, but to work with others on points of common interest.';
  quote[5]='<b>We are funders, shapers and catalysts for change.</b> We rely on others to act and implement; we will serve as efficient and effective fundraisers for the good of the entire dairy industry and the communities we serve.';
  quote[6]='<b>We expect accountability, ethical behavior and good stewardship</b> from ourselves, our donors and our funding recipients.';

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

setInterval('showQuote()',speed);
