<!-- Begin
	var timeDelay = 20; // change delay time in seconds
	var Pix = new Array ("img/si_kahn.jpg"
						,"img/mendilow.jpg"
						,"img/contradancing.jpg"
						,"img/millish.jpg"
						,"img/banjo_workshop.jpg"
						,"img/malcolm&pete.jpg"
						,"img/brooks_williams.jpg"
						,"img/sweetback.jpg"
						,"img/quebecois_jam.jpg"
						,"img/naquele_tempo.jpg"
						,"img/genticorum.jpg"
						,"img/enthusiastic.jpg"
						,"img/contradance.jpg");
	var Descrip = new Array ("Si Kahn on the Main stage with songs of family, community, work, and freedom."
							,"The Guy Mendilow band transports audiences on a vibrant journey to Israel, Brazil, and other places around the globe."
							,"Daytime contradancing to the Beaudoin Legacy band - and the dancers love the sprung wood floor!"
							,"Young Midwestern band Millish wows audiences with their blend of folk, world music, and jazz."
							,"Old-time musician Dan Gellert explores the banjo universe during this workshop with audience questions."
							,"Malcolm Sanders and Pete Sutherland during the CVF Staff Follies."
							,"Brooks Williams is one of the most engaging performers around with his bluesy fingerpicking and bottleneck slide."
							,"On the relocated Lakefront stage, the Sweetback Sisters shine with their traditional old-time and honky-tonk music."
							,"And on the other corner of the porch - a Quebecois jam session complete with step dancing."
							,"Latin music from Naquele Tempo and Amapola"
							,"Quebecois trio Genticorum perform traditional songs and tunes as well as original compositions..."
							,"...and the audience loves their witty humor and repartee."
							,"Contradancing in the dance tent with Genticorum and caller Fred Park.");
	var howMany = Pix.length;
	timeDelay *= 500;
	var PicCurrentNum = 0;
	var PicCurrent = new Image();
	PicCurrent.src = Pix[PicCurrentNum];
	function startPix() {
		setInterval("slideshow()", timeDelay);
	}
	function slideshow() {
		PicCurrentNum++;
		if (PicCurrentNum == howMany) {
			PicCurrentNum = 0;
		}
		PicCurrent.src = Pix[PicCurrentNum];
		document["ChangePix"].src = PicCurrent.src;
		document.getElementById('PicDescription').innerHTML = Descrip[PicCurrentNum];
	}
	// End -->
	