function randomQuote() {
var theQuote = new Array();

// ADD DELETE OR EDIT AGENTS HERE - CONTINUE WITH THE FORMAT PATTERN OF COURSE
theQuote[0] = '<br><img src=\"/images/quotes/cohn-quote.png\" alt=\"Someone once told me that to be remembered one must make and impression. In my business this means doing things better, faster and smarter than everyone else. When my customers visit my website they know I\'m no ordinary Joe. - Jeff Cohn | Top 1% of Omaha Real Estate Agents\" class=\"quote_margin\">';
theQuote[1] = '<br><img src=\"/images/quotes/vering-quote.png\" alt=\"After working with a couple of different website firms over the last several years, we have found the MayerMedia team to be much more responsive to our needs by giving us the special attention when we need it. - Chris Vering | Executive Vice President, CFO, COO | Knit-Rite, Inc.\" class=\"quote_margin\">';
theQuote[2] = '<br><img src=\"/images/quotes/griffin-quote.png\" alt=\"I hired MayerMedia for two law firm websites. MayerMedia was very responsive to our needs. We had big expectations and they delivered. We look forward to our continued relationship. - Garrett L. Griffin | Griffin, Dietrich &amp; Elliott, LLC | Kevan D. Acord, PA\" class=\"quote_margin\">';
//theQuote[3] = '<br><img src=\"/images/quotes/cohn-quote.png\" alt=\"\" class=\"quote_margin\">';
//theQuote[4] = '<br><img src=\"/images/quotes/cohn-quote.png\" alt=\"\" class=\"quote_margin\">';
//theQuote[5] = '<br><img src=\"/images/quotes/cohn-quote.png\" alt=\"\" class=\"quote_margin\">';
//theQuote[6] = '<br><img src=\"/images/quotes/cohn-quote.png\" alt=\"\" class=\"quote_margin\">';


var p = theQuote.length;
var whichQuote = Math.round(Math.random()*(p-1));
document.writeln(theQuote[whichQuote]);
return;
}