var LeftPic_name = new Array	("Big/CRW_8595.jpg",
	"Big/CRW_8633.jpg",
	"Big/CRW_8606.jpg",
	"Big/CRW_8618.jpg",
	"Big/CRW_8657.jpg",
	"Big/CRW_8674.jpg",
	"Big/CRW_8686.jpg",
	"Big/CRW_8701.jpg",
	"Big/CRW_8549.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]
			     }
		     }



