function JSRandomQuote() {
  i = 0;
  quotes = new Array();

quotes[i++] = "<a target='_blank' href = 'http://www.borrellisrestaurant.com'><img src='/banners/07borrelli.gif' alt='Borrellis Restaurant'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.modells.com'><img src='/banners/modellslogo.gif' alt='Modells Sporting Goods'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.pyedj.com'><img src='/banners/09pyedj.gif' alt='Peronally Yours Entertainment'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.zornschicken.com/ordereze/splash/'><img src='/banners/09zorns.gif' alt='Zorns Famous Chicken'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.nationwide.com/agent/east-meadow-new-york-insurance-agent/steven-principe/about.html&language=en'><img src='/banners/principe2011.gif' alt='Principe Agency'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.awidmanortho.com'><img src='/banners/awidman2011.gif' alt='Arnold Widman DDS'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.swml.com'><img src='/banners/swml2011.gif' alt='Schooler, Weinstein, Minsky &amp; Lester, PC'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.cellularcityvz.com/'><img src='/banners/cellularcity2011.png' alt='Cellular City, East Meadow'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.greenwoodtrails.com/'><img src='/banners/gwt.gif' alt='Greenwood Trails'></a>";
quotes[i++] = "<a target='_blank' href = 'http://www.eastmeadowbaseballsoftball.com/'><img src='/banners/embsa.gif' alt='East Meadow Baseball Softball'></a>";


  qi = Math.round((i - 1) * Math.random() + 0);
  return quotes[qi];
}


