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.alwaysonsecuritysolutions.com/'><img src='/banners/09alwayson.gif' alt='Always On Security Solutions'></a>";

  qi = Math.round((i - 1) * Math.random() + 0);
  return quotes[qi];
}

