<!--//

/* 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/",                                                          // Family Expo
//"/BHC/EventCalendar/Classes.aspx?ContentID=101746",                           // After Baby Comes 4 Dads
//"/HeartFirst/NationalHeartMonth.aspx?ContentID=101246&utm_source=web&utm_medium=eBHC&utm_content=banner&utm_campaign=heart_month_2010",
"/Mammography/",
//"/PastoralServices/FaithandHealing.aspx"                                        //Pastoral Services Blessing form
"/CancerProgram/?&utm_source=web&utm_medium=eBHC&utm_content=banner&utm_campaign=cancer_newdocs_2010"
);

// image path for each item
image = new initArray(
//"/ContentImages/HealthyLivingExpo/HealthyLivingExpoBanner.jpg",
//"/ContentImages/Homepage/adp_abc4d.gif",
//"/ContentImages/Homepage/adp_ham.gif",
"/ContentImages/BaptistMedicalGroup/MammoReminder.jpg",
//"/ContentImages/PastoralServices/FaithHealingCommunityGraphicHeaderBanner.jpg"  //Pastoral Services
"/ContentImages/Homepage/ad_ci_newdocs.png"
);

// alt text for each item
text = new initArray(
//"15th annual Baptist Health Care Healthy Living Expo: &ndash; click here for more info...",
//"After Baby Comes For Dads &ndash; click here for more info...",
//"Free heart risk assessment information",
"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..."
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var banLink  = link[core];
var banImage = image[core];
var altText  = text[core];

//-->