//
//  Common Scripts for Artists Rep Website
//

function clearText(thefield){
  if (thefield.defaultValue==thefield.value)
    thefield.value = ""
}

function getRandomImage() {
  var images = new Array(10);
  images[0] = "hp_0.jpg";
  images[1] = "hp_1.jpg";
  images[2] = "hp_2.jpg";
  images[3] = "hp_3.jpg";
  images[4] = "hp_4.jpg";
  images[5] = "hp_5.jpg";
  images[6] = "hp_6.jpg";
  images[7] = "hp_7.jpg";
  images[8] = "hp_8.jpg";
  images[9] = "hp_9.jpg";

  var index = Math.floor(Math.random() * images.length);
  document.write("<img src='/images/hero/" +images[index]+ "'>");
}