
<!-- Hide script from old browsers

	myPix = new Array("images/testimonials_1.jpg","images/testimonials_2.jpg","images/testimonials_3.jpg","images/testimonials_4.jpg","images/testimonials_5.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 -->
	
