<!--
if (document.images) {	// Active images
	introLINK1 = new Image();
	introLINK1.src = "/speccol/exhibits/theatre/images/nav_intro_01.gif";
	earlyLINK1 = new Image();
	earlyLINK1.src = "/speccol/exhibits/theatre/images/nav_early_01.gif";
	ideaLINK1 = new Image();
	ideaLINK1.src = "/speccol/exhibits/theatre/images/nav_idea_01.gif";
	musicalsLINK1 = new Image();
	musicalsLINK1.src = "/speccol/exhibits/theatre/images/nav_musicals_01.gif";
	stageLINK1 = new Image();
	stageLINK1.src = "/speccol/exhibits/theatre/images/nav_stage_01.gif";
	voiceLINK1 = new Image();
	voiceLINK1.src = "/speccol/exhibits/theatre/images/nav_voice_01.gif";
	picksLINK1 = new Image();
	picksLINK1.src = "/speccol/exhibits/theatre/images/nav_picks_01.gif";
	playbillsLINK1 = new Image();
	playbillsLINK1.src = "/speccol/exhibits/theatre/images/nav_playbills_01.gif";
	regionalLINK1 = new Image();
	regionalLINK1.src = "/speccol/exhibits/theatre/images/nav_regional_01.gif";

	introLINK0 = new Image();
	introLINK0.src = "/speccol/exhibits/theatre/images/nav_intro_00.gif";
 earlyLINK0 = new Image();
	earlyLINK0.src = "/speccol/exhibits/theatre/images/nav_early_00.gif";
	ideaLINK0 = new Image();
	ideaLINK0.src = "/speccol/exhibits/theatre/images/nav_idea_00.gif";
	musicalsLINK0 = new Image();
	musicalsLINK0.src = "/speccol/exhibits/theatre/images/nav_musicals_00.gif";
	stageLINK0 = new Image();
	stageLINK0.src = "/speccol/exhibits/theatre/images/nav_stage_00.gif";
	voiceLINK0 = new Image();
	voiceLINK0.src = "/speccol/exhibits/theatre/images/nav_voice_00.gif";
	picksLINK0 = new Image();
	picksLINK0.src = "/speccol/exhibits/theatre/images/nav_picks_00.gif";
	playbillsLINK0 = new Image();
	playbillsLINK0.src = "/speccol/exhibits/theatre/images/nav_playbills_00.gif";
	regionalLINK0 = new Image();
	regionalLINK0.src = "/speccol/exhibits/theatre/images/nav_regional_00.gif";
	
}

//  Function to 'activate' images
function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "1.src");
	}
}

// Function to 'deactivate images
function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "0.src");
	}
}
// -->