var quote=new Array();
  quote[0]='<i>It has truly been a pleasure and great honor to represent all of our clients.  Our clients have entrusted us with protecting areas of Florida they treasure.  From the rivers and lakes they fish on, to springs they dive in, and beaches they walk on, these are the places that inspire them, places they have grown up in, and places they want protected for their children.  Our clients have provided us with the blessing of being able to do what we as lawyers truly love and aspire to do, protect Florida&#8217;s environment.  To our clients we say &#8220;thank you.&#8221;</i><br><br><b>Martha M. Collins</b><br>President, Collins Law Group';

var speed=60000;    /*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);
