if (document.images) {
	boxoffice_01_on = new Image();				// roll over Images
	boxoffice_01_on.src ="images/leftmenu_boxoffice01b.gif";
	boxoffice_02_on = new Image();
	boxoffice_02_on.src ="images/leftmenu_boxoffice02b.gif";
	boxoffice_03_on = new Image();
	boxoffice_03_on.src ="images/leftmenu_boxoffice03b.gif";
	boxoffice_04_on = new Image();
	boxoffice_04_on.src ="images/leftmenu_boxoffice04b.gif";
	boxoffice_05_on = new Image();
	boxoffice_05_on.src ="images/leftmenu_boxoffice05b.gif";
	boxoffice_06_on = new Image();
	boxoffice_06_on.src ="images/leftmenu_boxoffice06b.gif";
	boxoffice_07_on = new Image();
	boxoffice_07_on.src ="images/leftmenu_boxoffice07b.gif";
	boxoffice_08_on = new Image();
	boxoffice_08_on.src ="images/leftmenu_boxoffice08b.gif";


	



	boxoffice_01_off = new Image();				// Original Images
	boxoffice_01_off.src ="images/leftmenu_boxoffice01a.gif";
	boxoffice_02_off = new Image();
	boxoffice_02_off.src ="images/leftmenu_boxoffice02a.gif";
	boxoffice_03_off = new Image();
	boxoffice_03_off.src ="images/leftmenu_boxoffice03a.gif";
	boxoffice_04_off = new Image();
	boxoffice_04_off.src ="images/leftmenu_boxoffice04a.gif";
	boxoffice_05_off = new Image();
	boxoffice_05_off.src ="images/leftmenu_boxoffice05a.gif";
	boxoffice_06_off = new Image();
	boxoffice_06_off.src ="images/leftmenu_boxoffice06a.gif";
	boxoffice_07_off = new Image();
	boxoffice_07_off.src ="images/leftmenu_boxoffice07a.gif";
	boxoffice_08_off = new Image();
	boxoffice_08_off.src ="images/leftmenu_boxoffice08a.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");
	}
}