var LeftPic_name = new Array	
("Big/IMG_1961.jpg",
"Big/IMG_1919.jpg",
"Big/IMG_1983.jpg",
"Big/IMG_1882.jpg",
"Big/IMG_1844.jpg",
"Big/IMG_1937.jpg",
"Big/IMG_2111.jpg",
"Big/IMG_2079.jpg");

var l1 = LeftPic_name.length;

var rnd1_no = Math.floor(l1*Math.random());

function cycleLeft() {
	if (document.images) {
	document.LeftPic.src = LeftPic_name[rnd1_no]
			     }
		     }
