myPics1 = new Array("i/gallery/001sml.jpg","i/gallery/016sml.jpg","i/gallery/003sml.jpg","i/gallery/004sml.jpg","i/gallery/005sml.jpg");
myPics2 = new Array("i/gallery/006sml.jpg","i/gallery/007sml.jpg","i/gallery/008sml.jpg","i/gallery/009sml.jpg","i/gallery/017sml.jpg");
myPics3 = new Array("i/gallery/011sml.jpg","i/gallery/012sml.jpg","i/gallery/013sml.jpg","i/gallery/014sml.jpg","i/gallery/015sml.jpg","i/gallery/018sml.jpg","i/gallery/019sml.jpg","i/gallery/020sml.jpg");
imgCt1 = myPics1.length;
imgCt2 = myPics2.length;
imgCt3 = myPics3.length;
function choosePic(){
	if(document.images){
	randomNum1 = Math.floor((Math.random() * imgCt1));
	document.sidebar1.src = myPics1[randomNum1];
	randomNum2 = Math.floor((Math.random() * imgCt2));
	document.sidebar2.src = myPics2[randomNum2];
	randomNum3 = Math.floor((Math.random() * imgCt3));
	document.sidebar3.src = myPics3[randomNum3];
	}
}