<!-- 

myPix = new Array(
  "images/home/01.jpg",
  "images/home/02.jpg",
  "images/home/03.jpg",
  "images/home/04.jpg",  
  "images/home/06.jpg",
  "images/home/07.jpg"
   )

imgCt = myPix.length 

function choosePic() {
	if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt))
		document.onePic.src = myPix[randomNum]
	}
}

//  -->	