<!--//
/* 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(
"/BHC/EventCalendar/Classes.aspx?ContentID=101746",                           // After Baby Comes 4 Dads
"/Mammography/",
//"/PastoralServices/FaithandHealing.aspx",                                        //Pastoral Services Blessing form
"/CancerProgram/?&utm_source=web&utm_medium=eBHC&utm_content=banner&utm_campaign=cancer_newdocs_2010",
"/FamilyExpo/"
);

// image path for each item
image = new initArray(
"/ContentImages/Homepage/adp_abc4d.gif",
"/ContentImages/BaptistMedicalGroup/MammoReminder.jpg",
//"/ContentImages/PastoralServices/FaithHealingCommunityGraphicHeaderBanner.jpg",  //Pastoral Services
"/ContentImages/Homepage/ad_ci_newdocs.png",
"/ContentImages/Homepage/ad_fe09b.gif"
);

// alt text for each item
text = new initArray(
"After Baby Comes For Dads &ndash; click here for more info...",
"Schedule a Mammogram Reminder TODAY!",
//"Send us your prayers, blessings and well-wishes for our place of healing in the community and all the lives it touches.",
"Baptist Cancer Institute welcomes our new physicians...",
"Family Expo Call for Vendors"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var banLink  = link[core];
var banImage = image[core];
var altText  = text[core];

//-->