var quotes = new Array;

quotes.push("Over 50 years of knowledge and experience<br> in the gas industry.");

quotes.push("Most orders ship in 48 hours, many the<br> same day.");

quotes.push("Our customer service is second to none.");

quotes.push("If you can't find it, call us.");

/*quotes.push("&quot;Here is another quote.&quot;<br><br>John Doe<br>ACME Inc.");*/

document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
