var randomhome = new Array ("imgs/img_home01.jpg","imgs/img_home02.jpg","imgs/img_home03.jpg","imgs/img_home04.jpg","imgs/img_home05.jpg")
function choosePic () {
  if (document.images) {
   randomNum = Math.floor((Math.random() * 10)) % 5
      document.homepic.src = randomhome[randomNum]
  }
}

// end hidescript -->