var my_imgs = new Array();
var my_imgs_link = new Array();
var my_imgs_alt = new Array();

/* Set image URLs */
my_imgs[0] = "images/theads/ad_000.gif";
my_imgs[1] = "images/theads/ad_001.gif";
my_imgs[2] = "images/theads/ad_002.gif";
my_imgs[3] = "images/theads/ad_003.gif";
my_imgs[4] = "images/theads/ad_004.gif";
my_imgs[5] = "images/theads/ad_005.gif";
my_imgs[6] = "images/theads/ad_006.gif";
my_imgs[7] = "images/theads/ad_007.gif";

/* Set image link URLs */
my_imgs_link[0] = "ads.htm";
my_imgs_link[1] = "http://www.mysoti.com/mysoti/designer/PixelMixer ";
my_imgs_link[2] = "http://qbmustachewaxx.com/";
my_imgs_link[3] = "shop_1.htm";
my_imgs_link[4] = "shop.htm";
my_imgs_link[5] = "shop_4.htm";
my_imgs_link[6] = "http://truthpick.net/forums/t/27.aspx";
my_imgs_link[7] = "http://www.nigelsecostore.com/";

/* Set image alternate text */
my_imgs_alt[0] = "Advertise on the World of Beards Website";
my_imgs_alt[1] = "Browse Beard T-Shirts at Diverged Designs shop";
my_imgs_alt[2] = "Buy Canadian Plus Moustache Styling Wax";
my_imgs_alt[3] = "Browse Amazon Beard Book Shop";
my_imgs_alt[4] = "Browse the Beard and Mustache Gift Shop";
my_imgs_alt[5] = "Buy False Beards and Fake Furs";
my_imgs_alt[6] = "Add Beardism to you Personal Belief System";
my_imgs_alt[7] = "Visit Nigels Eco Store";

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;
  
}

