var quote=new Array();
  quote[0]='<span class="purple">Catalyst:</span> cat.a.lyst (kat&prime;l ist), n. 2. a person whose talk, enthusiasm, or energy causes others to be more friendly, enthusiastic, or energetic.';
  quote[1]='<span class="purple">Catalyst:</span> cat.a.lyst (kat&prime;l ist), n. 3. a person or thing acting as the stimulus in bringing about something.';
  quote[2]='<span class="purple">Catalyst:</span> cat.a.lyst (kat&prime;l ist), n. 4. a high quality, high value, customer service focused IT Consulting Firm based in Atlanta, GA.';
  quote[3]='<span class="purple">Catalyst:</span> cat.a.lyst (kat&prime;l ist), n. 1. one that precipitates change in a process or event and increases the rate of a reaction.';

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