function changeText()
{

  var Quotation = new Array();
  var Author = new Array ();

  Quotation[0] = '<strong>Open Mountain was an ideal development partner.</strong>';
  Author[0] = 'CEO, ThriveOn';
  Quotation[1] = '<strong>Open Mountain was instrumental in our successful launch.</strong>';
  Author[1] = 'CEO, Brightstorm';
  Quotation[2] = '<strong>It really is turning into a great product.</strong>';
  Author[2] = 'CEO, GuidingCancer.com';
  Quotation[3] = '<strong>100% dedicated to making sure we shipped a great product</strong>.';
  Author[3] = 'VP of Product Management, Brightstorm';
  Quotation[4] = '<strong>Very focused on delivering quality and being responsive to customer needs.</strong>';
  Author[4] = 'Former VP of Sales, Netbooks.com';
  Quotation[5] = '<strong>Capable of balancing the opposing forces behind every successful release.</strong>';
  Author[5] = 'Creative Director, Ariba';

  var which = Math.round(Math.random()*(Quotation.length - 1));
//document.getElementById('div1').innerHTML = Quotation[which];
//document.getElementById('clientQuote').innerHTML = 'Fred Flinstone';
  document.getElementById('clientQuote').innerHTML = Quotation[which] + '<br>' + Author[which];

  setTimeout('changeText()', 7000);
}
