var quote = new Array(
// **************************************
// Place Quotes Here, Separated by Commas
// **************************************
"Every time an order arrives, it feels like Christmas!",
"Thank you, Paul, for your website...And thank you for the Instant Rebates!"
// *********************************
// NOTE: No Comma after last Quote
// *********************************
);
document.write(quote[Math.floor(Math.random()*quote.length)]);
