function getRandomQuote()
{

var quote = [];

quote[0] = "As a result of measuring Customer Loyalty and actioning the results, we have seen an 8% increase in revenue.";

quote[1] = "The Relationship interviews have been extremely beneficial in understanding our Client Loyalty.";

quote[2] = "The audio recordings of our interviews have been a huge value add.";

quote[3] = "Service 800 interviews customers around the world in 30 native languages every day.";

quote[4] = "SERVICE 800 was able to setup our NPS Program in just two weeks.";

quote[5] = "SERVICE 800 has become a true Business Partner with our organization.";

quote[6] = "Following up immediately after service impresses customers and yields real-time feedback.";

quote[7] = "Since we joined the Benchmark we have been able to improve our Tech Ability score by 20%.";

quote[8] = "We now measure all our Business Partners the same way with the Benchmark.";

var maxLength = quote.length;

var position = Math.floor(Math.random() * maxLength);

quote[position] = '<p style="color: #FFFFFF; font-size: 12px; font-family: Arial,Helvetica,sans-serif;line-height: 15px; margin-top: 0px;">' + quote[position] + '</p>'  ;

return document.write(quote[position]);
}
