var my_imgs = new Array();
var my_imgs_link = new Array();
var my_imgs_alt = new Array();

my_imgs[0] = "http://www.vanharteproducties.nl/reacties/reacties001.png";
my_imgs[1] = "http://www.vanharteproducties.nl/reacties/reacties002.png";
my_imgs[2] = "http://www.vanharteproducties.nl/reacties/reacties003.png";
my_imgs[3] = "http://www.vanharteproducties.nl/reacties/reacties004.png";
my_imgs[4] = "http://www.vanharteproducties.nl/reacties/reacties005.png";
my_imgs[5] = "http://www.vanharteproducties.nl/reacties/reacties006.png";
my_imgs[6] = "http://www.vanharteproducties.nl/reacties/reacties007.png";

if (document.getElementById && document.createTextNode) {
 
  var the_div = document.getElementById("banner");
  var ran_num = Math.floor(Math.random()*(my_imgs.length));
  
  var the_HTML = "";
  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;
  
}
