var theImages = new Array() 
		var j = 0
		var p = theImages.length;
		
		//If you add more images, increase the multiplyer, currently 29
		var whichImage = Math.round(Math.random()*(29));
		var whichImage2 = whichImage + 1;
		var whichImage3 = whichImage2 + 1;
		
		function showImage(){
		document.write('<img width="110" height="108" alt="" align="middle" src="rotate/'+whichImage+'.jpg">');
		}
		function showImage2(){
		document.write('<img width="110" height="108" alt="" align="middle" src="rotate/'+whichImage2+'.jpg">');
		}
		function showImage3(){
		document.write('<img width="110" height="108" alt="" align="middle" src="rotate/'+whichImage3+'.jpg">');
		}
