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.frenchkissrecords.com/images/123.gif";
my_imgs[1] = "http://www.frenchkissrecords.com/images/drums728.gif";

/* Set image link URLs */
my_imgs_link[0] = "http://itunes.apple.com/us/album/portamento-bonus-track-version/id45792956";
my_imgs_link[1] = "http://www.frenchkissrecords.com/boutique/advanced_search_result.php?keywords=1%2C2%2C3&x=0&y=0";


/* Set image alternate text */
my_imgs_alt[0] = "The Drums - Portamento";
my_imgs_alt[1] = "1,2,3 - New Heaven Out Now";


if (document.getElementById && document.createTextNode) {
 
  var the_div = document.getElementById("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\" border=\"0\" ";
  the_HTML += "alt=\""+my_imgs_alt[ran_num]+"\" /></a>";
  the_div.innerHTML = the_HTML;
  
}
