/*
 * +---------------------------------
 * |   adArray and adTable
 * |     description ; city ; ad image filename ; Y/N Double Wide ; ad webpage
 * |     Also:  Initialize Random Number seed
 * +---------------------------------
 */
var randomTime = new Date() ;
var randomSeed = randomTime.getSeconds() ;
var adArray = new Array(
   " ; ; ; ; ",
// "Click for Square Dancer Discount Coupon!  Bullrider Western Wear;Harlingen;bullrider.gif; ;rgvsd.com/ads/bullridercoupon.htm",
// "Click for Square Dancer Discount Coupon!  Bullrider Western Wear;Harlingen;bullriderblue.gif; ;rgvsd.com/ads/bullridercoupon.htm",
// "Click for Square Dancer Discount Coupon!  Gabriella's Ristorante;Port Isabel;gabriellasbanner.jpg; ;rgvsd.com/ads/gabriellascoupon.htm",
// "Click for Square Dancer Discount Coupon!  Marcello's Italian Restaurant;Port Isabel;marcellos.gif; ;rgvsd.com/ads/marcelloscoupon.htm",
   "Fun N Sun RV Resort;San Benito;park.fns.png; ;mhchomes.com/DBMHC/MHCCmnty.nsf/vwCommunities/Fun-N-Sun+RV+Resort",
   "Harlingen Area Chamber of Commerce;Harlingen;harlingenareacofc.gif; ;harlingen.com",
   "Louie's Backyard;South Padre Island;louiesbackyard.jpg; ;lbyspi.com",
// "Mid-Valley RV Inc.;Donna;midvalleyrv.gif; ;nshukayr.com/midvalleyrv.htm",
   "RGV Review.com;(valleywide);rgvreview.png;Y;rgvreview.com",
// "Daytona Beach Ball 2007 with Tony Oxendine, Larry Letson and The Griffens, sponsored by Grand Square Inc.;Charlotte, NC;daytonabeachball.gif; ;rgvsd.com/ads/daytonabeachball2007.pdf",
   "Fun Valley Square Dance Resort;South Fork, CO;funvalley1.png; ;rgvsd.com/ads/funval07.htm",
   "Pride RV Resort Square Dance Vacations;Maggie Valley, NC;pridebanner.bmp; ;pridervresort.com/SquareDancing/tabid/67/Default.aspx",
// "Pride RV Resort Square Dance Vacations;Maggie Valley, NC;pridebanner.bmp; ;pridervresort.com/SquareDancing/tabid/67/Default.aspx",
// "Queen City Ball 2007 with 5 top callers (Jerry Story, Larry Letson, Tony Oxendine, Dee Dee Dougherty, Randy Dougherty), The Whetsells on rounds and The Ghost Riders Band! sponsored by Grand Square Inc.;Charlotte, NC;queencityball.gif; ;rgvsd.com/ads/queencityball2007.pdf",
// "Air travel, hotels, car hire and sightseeing by British Airways Holidays;England and worldwide;baholidays.gif; ;dpbolvw.net/click-2281291-10397665",
// "Discount contact lenses;Nationwide;aclens.gif;Y;dpbolvw.net/click-2281291-10281219",
// "Discount pet supplies - take an extra 10% off, enter code CCP1 at checkout;Nationwide;cheappetstore.jpe; ;dpbolvw.net/click-2281291-10453691",
// "Low prices and free shipping on luggage, backpacks, handbags and more;Nationwide;ebags.gif; ;anrdoezrs.net/click-2281291-10293894",
// "Save on sightseeing in London with the London Pass;London, England;londonpass.gif; ;kqzyfj.com/click-2281291-680142",
   "Sheplers Western Wear;Nationwide;sheplers.gif; ;dpbolvw.net/click-2281291-799316" ) ;
// "Subscribe to USA Today;Nationwide;usatoday.gif; ;anrdoezrs.net/click-2281291-10376666" ) ;

/*
 * +---------------------------------
 * |   load the Ad Table data
 * +---------------------------------
 */
var     tableAdDescrip  = new Array();
var     tableAdCity     = new Array();
var     tableAdFilename = new Array();
var     tableAdYNDouble = new Array();
var     tableAdWebpage  = new Array();
tableAdFilename.length = 0;

for (var i = 0; i < adArray.length; i++)
   {
   var entry = adArray[i].split(";");
   tableAdDescrip[i]  = entry[0] ;
   tableAdCity[i]     = entry[1] ;
   tableAdFilename[i] = entry[2] ;
   tableAdYNDouble[i] = entry[3] ;
   tableAdWebpage[i]  = entry[4] ;
   } ;
