//<![CDATA[
var quote=new Array();
  quote[0]='"<font color="#698CC2"><strong>High quality product. Works excellently! I use it all the time.</strong></font>"<br>Mike Panaggio<br>CEO - DME<br>Daytona Beach, Florida';    /* add as many quotes as you like!*/
  quote[1]='"<font color="#698CC2"><strong>I have been able to take a seat rather than stand around on many occasions. I will not buy another carry on luggage that I can\'t sit on</strong></font>"<br>Scott Gregory - Chief Mate<br>Crowley Maritime Services<br>Seattle, Washington';
  quote[2]='"<font color="#698CC2"><strong>The SeatKase is a great product. It comes in very handy. My wife ordered one as soon as she saw mine, she loves it!</strong></font>"<br>Ed DeChenne - Sales Manager<br>Jugs Pitching Machines<br>Tualatin, Oregon';
  quote[3]='"<font color="#698CC2"><strong>The SeatKase is a quality piece of luggage. It\'s features work great! I was able to use it for my computer during a 2 hour delay. It really helped.</strong></font>"<br>Jeri Riggs - General Manager<br>Hotel Vintage Plaza<br>Portland, Oregon';

var speed=10000;    /*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);
   
 //]]>
