 <!-- Hide script from old browsers

 myPix = new
Array("/images/rotators/1.jpg","/images/rotators/2.jpg","/images/rotators/3.jpg","/images/rotators/4.jpg","/images/rotators/5.jpg","/images/rotators/6.jpg","/images/rotators/7.jpg")
 imgCt = myPix.length

 function choosePic() {
  if (document.images) {
   randomNum = Math.floor((Math.random() * imgCt))
   document.myPicture.src = myPix[randomNum]
  }
 }

 // End hiding script from old browsers -->