var quoteNum = 0;
var quotes = new Array()
quotes[quoteNum++] = "After installing the Applicator Cleaner, in one 8 hr shift we counted 30 spit/drip rejects. This is compared to 500 rejects normally."
quotes[quoteNum++] = "The first impression, which comes out of this system, is its simplicity."
quotes[quoteNum++] = "The Doyle paint applicator technology has taken the automotive industry by storm."


var quote_array_length = quotes.length;
var random_number = Math.round((quote_array_length-1)*Math.random());
var generated_quote = "<p>&quot;" + quotes[random_number] + "&quot;</p>";
