var f_imgs = new Array();
var f_imgs_link = new Array();
var f_imgs_alt = new Array();
var f_text = new Array();

/* Set image URLs */
f_imgs[0] = "/files/images/featured-roamalert.jpg";
f_imgs[1] = "/files/images/featured-kissesTM.jpg";
f_imgs[2] = "/files/images/featured-wanderguardTM.jpg";
f_imgs[3] = "/files/images/featured-tabsTM.jpg";
f_imgs[4] = "/files/images/featured-hugsTM.jpg";
f_imgs[5] = "/files/images/featured-scancell.jpg";
f_imgs[6] = "/files/images/featured-scantransport.jpg";
f_imgs[7] = "/files/images/featured-passport.jpg";
f_imgs[8] = "/files/images/featured-spacetrax.jpg";

/* Set image link URLs */
f_imgs_link[0] = "/uk/solutions/elopement-management/roamalert";
f_imgs_link[1] = "/uk/solutions/hugs-baby-tagging/kisses-mother/infant-matching";
f_imgs_link[2] = "/uk/solutions/elopement-management/wanderguard";
f_imgs_link[3] = "/uk/solutions/tabs-fall-management";
f_imgs_link[4] = "/uk/solutions/hugs-baby-tagging";
f_imgs_link[5] = "/uk/solutions/storage-inventory/medical-carts-cabinets/scan-modul/equipment/scancell-carts";
f_imgs_link[6] = "/uk/solutions/storage-inventory/medical-carts-cabinets/scan-modul/equipment/transport-carts";
f_imgs_link[7] = "/uk/solutions/passport-patient-protection";
f_imgs_link[8] = "/uk/solutions/storage-inventory/inventory-management";

/* Set image alternate text */
f_imgs_alt[0] = "Learn more about RoamAlert Securaband";
f_imgs_alt[1] = "Learm more about Kisses mother/infant matching";
f_imgs_alt[2] = "Learm more about WanderGuard Departure Alert";
f_imgs_alt[3] = "Learm more about TABS Fall Management";
f_imgs_alt[4] = "Learm more about Hugs Infant Protection";
f_imgs_alt[5] = "Learm more about ScanCell carts";
f_imgs_alt[6] = "Learm more about Scan Modul transport carts";
f_imgs_alt[7] = "Learm more about Passport Patient Protection";
f_imgs_alt[8] = "Learm more about SpaceTRAX inventory management system";

/* Set image text */
f_text[0] = "The total solution for Wander Prevention";
f_text[1] = "Make your infant protection complete with Kisses mother/infant matching";
f_text[2] = "The trusted name in wander management";
f_text[3] = "Invest in safety with TABS fall monitors";
f_text[4] = "The trusted solution for baby tagging";
f_text[5] = "Over 5,000,000 possible combinations";
f_text[6] = "Structure your supplies from stock to consumption";
f_text[7] = "Protect patients in multiple hospital departments";
f_text[8] = "Reduce costs, optimize inventory levels";


if (document.getElementById && document.createTextNode) {
 
  var the_div = document.getElementById("f_banners");
  var ran_num = Math.floor(Math.random()*(f_imgs.length));
  
  var the_HTML = "<a href=\""+f_imgs_link[ran_num]+"\">";
  the_HTML += "<img src=\""+f_imgs[ran_num]+"\" class=\"banner_imgs\" ";
  the_HTML += "alt=\""+f_imgs_alt[ran_num]+"\" /></a><br>";
  the_HTML += "<a href=\""+f_imgs_link[ran_num]+"\">"+f_text[ran_num]+"</a>";
  the_div.innerHTML = the_HTML;
  
}


