// JavaScript Document
var my_imgs2 = new Array();
var my_imgs_link2 = new Array();
var my_imgs_alt2 = new Array();

/* Set image URLs */
my_imgs2[0] = "Images/tipoftheday/01.jpg";
my_imgs2[1] = "Images/tipoftheday/02.jpg";
my_imgs2[2] = "Images/tipoftheday/03.jpg";
my_imgs2[3] = "Images/tipoftheday/04.jpg";
my_imgs2[4] = "Images/tipoftheday/05.jpg";
my_imgs2[5] = "Images/tipoftheday/06.jpg";
my_imgs2[6] = "Images/tipoftheday/07.jpg";
my_imgs2[7] = "Images/tipoftheday/08.jpg";

/* Set image alternate text */


if (document.getElementById && document.createTextNode) {
 
  var the_div = document.getElementById("my_banners2");
  var ran_num = Math.floor(Math.random()*(my_imgs2.length));
  
  var the_HTML = "<img src=\""+my_imgs2[ran_num]+"\" class=\"banner_imgs2\" ";
  the_HTML += "alt=\""+my_imgs_alt2[ran_num]+"\" />";
  the_div.innerHTML = the_HTML;
  
}

