if (document.images) {
	theater_01_on = new Image();				// roll over Images
	theater_01_on.src ="/theater/images/leftmenu_theater01b.gif";
	theater_02_on = new Image();
	theater_02_on.src ="/theater/images/leftmenu_theater02b.gif";
	theater_03_on = new Image();
	theater_03_on.src ="/theater/images/leftmenu_theater03b.gif";
	theater_04_on = new Image();
	theater_04_on.src ="/theater/images/leftmenu_theater04b.gif";
	theater_05_on = new Image();
	theater_05_on.src ="/theater/images/leftmenu_theater05b.gif";
	theater_06_on = new Image();
	theater_06_on.src ="/theater/images/leftmenu_theater06b.gif";
	theater_07_on = new Image();
	theater_07_on.src ="/theater/images/leftmenu_theater07b.gif";
	theater_08_on = new Image();
	theater_08_on.src ="/theater/images/leftmenu_theater08b.gif";


	



	theater_01_off = new Image();				// Original Images
	theater_01_off.src ="/theater/images/leftmenu_theater01a.gif";
	theater_02_off = new Image();
	theater_02_off.src ="/theater/images/leftmenu_theater02a.gif";
	theater_03_off = new Image();
	theater_03_off.src ="/theater/images/leftmenu_theater03a.gif";
	theater_04_off = new Image();
	theater_04_off.src ="/theater/images/leftmenu_theater04a.gif";
	theater_05_off = new Image();
	theater_05_off.src ="/theater/images/leftmenu_theater05a.gif";
	theater_06_off = new Image();
	theater_06_off.src ="/theater/images/leftmenu_theater06a.gif";
	theater_07_off = new Image();
	theater_07_off.src ="/theater/images/leftmenu_theater07a.gif";
	theater_08_off = new Image();
	theater_08_off.src ="/theater/images/leftmenu_theater08a.gif";


	

}

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

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