myPix1 = new Array("../banners/banner1.jpg","../banners/banner2.jpg","../banners/banner3.jpg","../banners/banner4.jpg")

myPix2 = new Array("../random_images/rt2.jpg","../random_images/rt5.jpg","../random_images/rt6.jpg", "../random_images/rt10.jpg", "../random_images/rt14.jpg","../random_images/rt15.jpg")

myPix3 = new Array("../random_images/rt7.jpg","../random_images/rt8.jpg","../random_images/rl.jpg", "../random_images/rt11.jpg","../random_images/rt16.jpg")

myPix4 = new Array("../random_images/m1.jpg","../random_images/rm.jpg", "../random_images/rt9.jpg", "../random_images/rt12.jpg","../random_images/rt17.jpg")

myPix5 = new Array("../random_images/rightimage2.jpg","../random_images/rightimage1.jpg", "../random_images/rt13.jpg","../random_images/rt18.jpg")

function choosePix() {

	if(document.images) {
	
		randomNum = Math.floor((Math.random() * myPix1.length))
		
		document.myPicture1.src=myPix1[randomNum]
		
		randomNum = Math.floor((Math.random() * myPix2.length))
				
		document.myPicture2.src=myPix2[randomNum]
		
		randomNum = Math.floor((Math.random() * myPix3.length))
				
		document.myPicture3.src=myPix3[randomNum]
		
		randomNum = Math.floor((Math.random() * myPix4.length))
				
		document.myPicture4.src=myPix4[randomNum]
		
		randomNum = Math.floor((Math.random() * myPix5.length))
						
		document.myPicture5.src=myPix5[randomNum]
		
	}
		
}