var quote=new Array();
  quote[0]='Their professional approach, attention to detail, technical knowledge, experience, and leadership skills, were unmatched.<div style="float:right; width:318px; text-align:right">- John Downey / LaRoche Industries </div>';
  quote[1]='Catalyst&prime;s leadership, experience, and expertise were the reasons our project finished on time and on budget.<div style="float:right; width:318px; text-align:right">- Allan J. Dziwoki / Mitsubishi Electric</div>';
  quote[2]='Their &prime;hands-on&prime; approach to implementing problem resolutions quickly established Catalyst Consulting as a valued business partner.<div style="float:right; width:318px; text-align:right">- David Hilburn / OneSource</div>';
  quote[3]='Catalyst&prime;s highly competent personnel, with their in depth understanding of both our systems and our business needs, were the key to the success of the project. <div style="float:right; width:318px; text-align:right">- Christine Glowaski / Inovis</div>';
  quote[4]='The Catalyst team we worked with was very professional, knowledgeable, action oriented and quality conscious.<div style="float:right; width:318px; text-align:right">- George W. Landgrebe / Infor</div>';
  quote[5]='Catalyst provided our organization with realistic process improvement strategies in the areas of billing, collections, and cash applications.<div style="float:right; width:318px; text-align:right">- David Hilburn / OneSource</div>';
  quote[6]='Catalyst&prime;s highly competent personnel, with their in depth understanding of our business needs, were the key to the success of the project.<div style="float:right; width:318px; text-align:right">- Christine Glowaski / Inovis</div>';
  quote[7]='When I think of a first-rate consulting firm, I think of Catalyst.<div style="float:right; width:318px; text-align:right">- Lara Beck / ASI</div>';

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