<!--//
/* Header "promo" Banner Rotater */

var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}
// url for each item
link = new initArray(
//"/HealthyLivingExpo/", 
"/BHC60thAnniversary/"
//"/PastoralServices/FaithandHealing.aspx"                                       //Pastoral Services Blessing form
//"/DigitalMammography/?utm_source=eBHC&utm_medium=banner_ad&utm_term=3D%2Bdigital%2Bmammography&utm_content=header_ad&utm_campaign=Cancer"
//"/DigitalMamography/?utm_source=web&utm_medium=eBHC&utm_content=header_ad&utm_campaign=Digital%20Mammography"
//"http://www.theandrewsinstitute.com/SportsMedicineOutreach/AthleticTrainingRoom.aspx"
);

// image path for each item
image = new initArray(
//"/ContentImages/Ads/ad_HLE12.jpg",
"/ContentImages/BHC60th/BHC60Ad250x60.jpg"
//"/ContentImages/PastoralServices/FaithHealingCommunityGraphicHeaderBanner.jpg"  //Pastoral Services
//"/ContentImages/Ads/ad_3dmammo.jpg"
//"/ContentImages/Ads/ad_studentathleteinjuryclinic.png"
);

// alt text for each item
text = new initArray(
//"2012 Healthy Living Expo presented by Baptist GoldenCare",
"Baptist Health Care Celebrating 60 Years"
//"Send us your prayers, blessings and well-wishes for our place of healing in the community and all the lives it touches."
//"First in Florida to offer 3-D Mammography &ndash; Digital Mammography at Baptist"
//"Student-Athlete Injury Clinic on Saturdays at the Andrews Institute"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var banLink  = link[core];
var banImage = image[core];
var altText  = text[core];

//-->
