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.eshgdesign.com/clients/gluepenny/header_1.jpg";
my_imgs[1] = "http://www.eshgdesign.com/clients/gluepenny/header_2.jpg";
my_imgs[2] = "http://www.eshgdesign.com/clients/gluepenny/header_3.jpg";

/* Set image alternate text */
my_imgs_alt[0] = "Lunch with Glue Penny and Fish Head. Lunchtime Antics of Two Very Unfortunate Souls. Happy lorem ipsum!";
my_imgs_alt[1] = "Lunch with Glue Penny and Fish Head. Lunchtime Antics of Two Very Unfortunate Souls. Happy lorem ipsum!";
my_imgs_alt[2] = "Lunch with Glue Penny and Fish Head. Lunchtime Antics of Two Very Unfortunate Souls. Happy lorem ipsum!";

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 = "<img src=\""+my_imgs[ran_num]+"\" class=\"banner_imgs\" ";
  the_HTML += "alt=\""+my_imgs_alt[ran_num]+"\" />";
  the_div.innerHTML = the_HTML;
  
}

