// JavaScript Document
myPix = new Array("/atf/cf/{B4AF8F8B-E671-4661-B91B-D446CE18410D}/home_pic.jpg","/atf/cf/{B4AF8F8B-E671-4661-B91B-D446CE18410D}/home_pic_flower.jpg","/atf/cf/{B4AF8F8B-E671-4661-B91B-D446CE18410D}/home_pic_forest.jpg")
 imgCt = myPix.length 
 
 function choosePic() {
  if (document.images) {
   randomNum = Math.floor((Math.random() * imgCt))
   document.myPicture.src = myPix[randomNum]
  }
 }

 

