var randomnumber = Math.floor(Math.random()*4);
var quoteArray = new Array();
quoteArray[0] = "<b>Client Quotes</b><br /><br /><span class=quotetext>&quot;The combination of Avalion’s senior resources and innovative approach to SOX compliance helped us successfully deploy ComplianceSet in weeks instead of months, literally taking less than half the time required by other leading solutions we evaluated.&quot;</span><br><br><span class=clientTitle>Director of Internal Audit,<br />International Manufacturing Company</span>";
quoteArray[1] = "<b>Client Quotes</b><br /><br /><span class=quotetext>&quot;ComplianceSet's SaaS solution delivery model let us avoid a big upfront capital expenditure for software and hardware.&quot;</span><br><br><span class=clientTitle>Chief Information Officer,<br />National Healthcare Outsourcing Company</span>";
quoteArray[2] = "<b>Client Quotes</b><br /><br /><span class=quotetext>&quot;They work seamlessly as part of our team rather than acting as just another set of external auditors.  Avalion consultants have deep, relevant experience and their officer in charge provides regular, hands-on leadership for our compliance process.&quot;</span><br><br><span class=clientTitle>Chief Accounting Officer,<br />Healthcare Oupatient Company</span>";
quoteArray[3] = "<b>Client Quotes</b><br /><br /><span class=quotetext>&quot;Avalion's commitment to our success was demonstrated through their attention to impeccable client service and follow-through as well as flexibility in accommodating our unique compliance requirements.&quot;</span><br><br><span class=clientTitle>Director of SOX Compliance,<br />Global Manufacturer of Electrical Equipment</span>";

function changeCSetQuote() {
  setInterval("changeQuoteText();", 12000); 
}

function changeQuoteText()
{
  
  
  document.getElementById('clientCSetQuote').innerHTML=quoteArray[randomnumber];
  randomnumber= randomnumber+1;
  if (randomnumber==4) {randomnumber = 0};
  
}

