// JavaScript Document
var my_imgs = new Array();
var my_imgs_link = new Array();
var my_imgs_alt = new Array();

/* Set image URLs */
my_imgs[0] = "http://209.85.62.24/28103/152/0/p330398/Adbanner1.png";
my_imgs[1] = "http://209.85.62.24/28103/152/0/p330400/Promobanner1.png";
my_imgs[2] = "http://209.85.62.24/28103/152/0/p330401/Promobanner2.png";
my_imgs[3] = "http://209.85.62.24/28103/152/0/p330398/Adbanner1.png";
my_imgs[4] = "http://209.85.62.24/28103/152/0/p330398/Adbanner1.png";
my_imgs[5] = "http://209.85.62.24/171/10/0/p331664/gaming.gif";
my_imgs[6] = "http://209.85.62.24/171/10/0/p331664/gaming.gif";
my_imgs[7] = "http://209.85.62.24/171/10/0/p331664/gaming.gif";
my_imgs[8] = "http://209.85.62.24/277/153/0/p338509/Promobanner5.png";

/* Set image link URLs */
my_imgs_link[0] = "http://outlineforum.com/topic/3530265/1/";
my_imgs_link[1] = "http://outlineforum.com";
my_imgs_link[2] = "http://outlineforum.com";
my_imgs_link[3] = "http://outlineforum.com/topic/3530265/1/";
my_imgs_link[4] = "http://outlineforum.com/topic/3530265/1/";
my_imgs_link[5] = "http://reherbs.com/index/";
my_imgs_link[6] = "http://reherbs.com/index/";
my_imgs_link[7] = "http://reherbs.com/index/";
my_imgs_link[8] = "http://zbfservices.com/index/";

/* Set image alternate text */
my_imgs_alt[0] = "Advertise on Outline";
my_imgs_alt[1] = "Visit Outline today!";
my_imgs_alt[2] = "Visit Outline today!";
my_imgs_alt[3] = "Advertise on Outline";
my_imgs_alt[4] = "Advertise on Outline";
my_imgs_alt[5] = "Herbs";
my_imgs_alt[6] = "Herbs";
my_imgs_alt[7] = "Herbs";
my_imgs_alt[8] = "Forum Services";

if (document.getElementById && document.createTextNode) {
 
  var the_div = document.getElementById("my_banners");
  var ran_num = Math.floor(Math.random()*(my_imgs.length));
  
  var the_HTML = "<a href=\""+my_imgs_link[ran_num]+"\">";
  the_HTML += "<img src=\""+my_imgs[ran_num]+"\" class=\"banner_imgs\" ";
  the_HTML += "alt=\""+my_imgs_alt[ran_num]+"\" /></a>";
  the_div.innerHTML = the_HTML;
  
}

