// Copyright Acro Media Inc. 1998-2010, www.acromediainc.com


// Data
bannerLinks = [
  "/accounts/per_prog_we_love_customers.htm",             
  "/accounts/per_prog_heroes.htm",
  "/accounts/per_prog_moms.htm",
  "/accounts/per_prog_imatter.htm",
  "/accounts/per_prog_better.htm",
  "",
  "http://www.cardcash.us/firstreliance"
  ];

linkWindow = [
  "",
  "",
  "",
  "",
  "",
  "target='_blank'"
  ];

advertGraphic = [
  "banner_we_love_our_customers.jpg",
  "banner_hometown_heroes.jpg",
  "banner_moms_first.jpg",
  "banner_imatter.jpg",
  "banner_better_life.jpg",
  "banner_mortgage.jpg",
  "banner_1percent_cash_back.jpg"
  ];  

//-- Generate a random number between 0 and the total number of banners.
var numBanners = advertGraphic.length;
var rNum=NaN
while (isNaN(rNum)) {
  rNum=Math.floor(Math.random()*(numBanners))
}


