// this makes the images rotate

		imageArray = new Array('',
		'packs1.jpg',
		'packs2.jpg'
		)
		function imageMake() {
		num = Math.round(Math.random()*2)
		if ( (num == 0) || (num >= imageArray.length) ) imageMake()
		else document.write("<img src='images/"+imageArray[num]+"' alt='image' border=0>")

		}
		imageMake()