var quote = new Array(6)

quote[0]='<p style="padding:0 0 0 10px;font-size:10px;">"We are confident that you will receive excellent support on your project as Commercial Systems Group has successfully installed and maintained numerous integrated security management systems."<br /><strong>Bill Huber</strong><br /><em>VP Sales</em><br />GE Security</p>';
quote[1] = '<p style="padding:10px 0 0 10px;font-size:10px">"We have subcontracted to Commercial Systems Group for many years. Their conduct has always been professional and they have repeatedly produced a quality product in a timely fashion. They have never failed to complete a contract for us."<br /><strong>Dennis E. Steventon</strong><br /><em>President</em><br />Continental Electric</p>';
quote[2] = '<p style="padding:10px 0 0 10px;font-size:10px">"CSG has been cooperative and timely on all scheduling, and the quality of workmanship has been exemplary."<br /><strong>John C. Armstrong</strong><br /><em>Vice President</em><br />Morton Electric, Inc.</p>';
quote[3] = '<p style="padding:10px 0 0 10px;font-size:10px">"We are truly grateful for the work of CSG here at Harbor House. They have helped us ensure that the women and children who are fleeing violence, remain safe while in our care."<br /><strong>Carol Wick</strong><br /><em>CEO</em><br />Harbor House</p>';
quote[4] = '<p style="padding:10px 0 0 10px;font-size:10px">"I have witnessed many contractors struggle with the recent downturn in the economy however CSG has been the exception. Their business continues to grow because of the many products and services that they offer that differentiates them from the competition."<br /><strong>Heath Ritenour</strong><br/ ><em>CEO</em><br />Insurance Office of America</p>';
quote[5] = '<p style="padding:10px 0 0 10px;font-size:10px">"I just wanted to thank you for going the extra mile and helping me get the report completed in a timely fashion. It’s good to see that there are still people like you, working for companies like yours, that support us in making sure we stay compliant before our big inspections - Great Job"<br /><strong>John Prusaczyk</strong><br/ ><em>Director of Operations</em><br />Select Medical</p>';
 


//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (quote.length));

if (random_number == quote.length){random_number = 0}


//set quote
var randomquote = quote[random_number];
document.write(randomquote);
