var quote=new Array();
  quote[0]='Involved in the original IPO';
  quote[1]='High quality personnel; most from Big 5 Consulting Firms';
  quote[2]='Full life-cycle consulting services or focused improvement for existing implementations';
  quote[3]='Consultants have an average of 7 years on Clarity';
  quote[4]='Customer-focused';
  quote[5]='We have developed a standard deliverables toolset, which increases project quality and enhances value received';
  quote[6]='Excellent, unmatched references';
  quote[7]='Talk to our customers to learn why we stand out!';
  quote[8]='We have been providing Clarity consulting <br /> since 1999';

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);