var LeftPic_name = new Array	
("Big/IMG_2804.jpg",
"Big/IMG_2814.jpg",
"Big/IMG_2821.jpg",
"Big/IMG_2823.jpg",
"Big/IMG_2833.jpg",
"Big/IMG_2835.jpg",
"Big/IMG_2853.jpg",
"Big/IMG_2861.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]
			     }
		     }
