var my_imgs = new Array();
var my_imgs_link = new Array();
var my_imgs_alt = new Array();

/* Set image URLs */
my_imgs[0] = "images/random_quote/1.gif";
my_imgs[1] = "images/random_quote/4.gif";
my_imgs[2] = "images/random_quote/2.gif";
my_imgs[3] = "images/random_quote/1.gif";
my_imgs[4] = "images/random_quote/4.gif";

/* Set image link URLs */
my_imgs_link[0] = "http://www.eldoradohillschamber.org/member_testimonials.html";
my_imgs_link[1] = "http://www.eldoradohillschamber.org/member_testimonials.html";
my_imgs_link[2] = "http://www.eldoradohillschamber.org/member_testimonials.html";
my_imgs_link[3] = "http://www.eldoradohillschamber.org/member_testimonials.html";
my_imgs_link[4] = "http://www.eldoradohillschamber.org/member_testimonials.html";

/* Set image alternate text */
my_imgs_alt[0] = "Click to see all member testimonials...";
my_imgs_alt[1] = "Click to see all member testimonials...";
my_imgs_alt[2] = "Click to see all member testimonials...";
my_imgs_alt[3] = "Click to see all member testimonials...";
my_imgs_alt[4] = "Click to see all member testimonials...";

if (document.getElementById && document.createTextNode) {
 
  var the_div = document.getElementById("random_quotes");
  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;
  
}


