	myPix = new Array("/bby/images/banner_inv-landing_new1.jpg","/bby/images/banner_inv-landing_new1.jpg")
	imgCt = myPix.length 

	function choosePic() {

		if (document.images) {
			randomNum = Math.floor((Math.random() * imgCt))
			document.bannerimage.src = myPix[randomNum]
		}
	}
window.onload = choosePic;
