var my_imgs = new Array();
var my_imgs_link = new Array();
var my_imgs_alt = new Array();

/* Set image URLs */
my_imgs[0] = "ads/style/bucket_style_swimwear.jpg";
my_imgs[1] = "ads/style/bucket_style_leggings.jpg";
my_imgs[2] = "ads/style/bucket_style_shorts.jpg";
my_imgs[3] = "ads/style/bucket_style_skirts.jpg";
my_imgs[4] = "ads/style/bucket_style_goddis.jpg";
my_imgs[5] = "ads/style/bucket_style_editorspicks.jpg";
my_imgs[6] = "ads/style/bucket_style_denim.jpg";
my_imgs[7] = "ads/style/bucket_style_torn_copy.jpg";


/* Set image link URLs */
my_imgs_link[0] = "http://www.boutiquetoyou.com/category_s/591.htm";
my_imgs_link[1] = "http://www.boutiquetoyou.com/category_s/717.htm";
my_imgs_link[2] = "http://www.boutiquetoyou.com/category_s/718.htm";
my_imgs_link[3] = "http://www.boutiquetoyou.com/category_s/716.htm";
my_imgs_link[4] = "http://www.boutiquetoyou.com/category_s/793.htm";
my_imgs_link[5] = "http://www.boutiquetoyou.com/category_s/804.htm";
my_imgs_link[6] = "http://www.boutiquetoyou.com/category_s/675.htm";
my_imgs_link[7] = "http://www.boutiquetoyou.com/SearchResults.asp?Cat=675";


/* Set image alternate text */
my_imgs_alt[0] = "Swimwear";
my_imgs_alt[1] = "Leggings";
my_imgs_alt[2] = "Shorts";
my_imgs_alt[3] = "Skirts";
my_imgs_alt[4] = "Goddis";
my_imgs_alt[5] = "Editor's Picks";
my_imgs_alt[6] = "Denim";
my_imgs_alt[7] = "Torn Text";



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;
  
}


