var my_imgs = new Array();
var my_imgs_link = new Array();
var my_imgs_alt = new Array();

/* Set image URLs */
my_imgs[0] = "http://www.atf.cc/styles/WoWMoonclaw/imageset/site_logo.gif";
my_imgs[1] = "http://www.atf.cc/styles/WoWMoonclaw/imageset/site_logo-ATF_header_Banner_v3.jpg";
my_imgs[2] = "http://www.atf.cc/styles/WoWMoonclaw/imageset/site_logo-ATF_header_Banner_v4.jpg";
my_imgs[3] = "http://www.atf.cc/styles/WoWMoonclaw/imageset/site_logo-ATF_header_Banner_v4.jpg";
my_imgs[4] = "http://www.atf.cc/styles/WoWMoonclaw/imageset/site_logo-ATF_header_Banner_v2-4.jpg";
my_imgs[5] = "http://www.atf.cc/styles/WoWMoonclaw/imageset/site_logo-ATF_header_Banner_v2-5.jpg";

/* Set image link URLs */
my_imgs_link[0] = "http://www.atf.cc";
my_imgs_link[1] = "http://www.atf.cc";
my_imgs_link[2] = "http://www.atf.cc";
my_imgs_link[3] = "http://www.atf.cc";
my_imgs_link[4] = "http://www.atf.cc";
my_imgs_link[5] = "http://www.atf.cc";

/* Set image alternate text */
my_imgs_alt[0] = "All in the Family - AtF.cc";
my_imgs_alt[1] = "All in the Family - AtF.cc";
my_imgs_alt[2] = "All in the Family - AtF.cc";
my_imgs_alt[3] = "All in the Family - AtF.cc";
my_imgs_alt[4] = "All in the Family - AtF.cc";
my_imgs_alt[5] = "All in the Family - AtF.cc";

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;
  
}

