isIE = (navigator.appName == 'Microsoft Internet Explorer');
isV5 = (parseFloat(navigator.appVersion)>=5.0);

if (document.images) {
	rollOvers = 1;
} else {
	rollOvers = 0;
}

loaded = 0;

function loadImg() {
	if (rollOvers) {
		menu00On = new Image();
		menu00On.src = "../common/img/menu00_over.gif";
		menu01On = new Image();
		menu01On.src = "../common/img/menu01_over.gif";
		menu02On = new Image();
		menu02On.src = "../common/img/menu02_over.gif";
		menu03On = new Image();
		menu03On.src = "../common/img/menu03_over.gif";
		menu04On = new Image();
		menu04On.src = "../common/img/menu04_over.gif";
		menu05On = new Image();
		menu05On.src = "../common/img/menu05_over.gif";
		menu06On = new Image();
		menu06On.src = "../common/img/menu06_over.gif";
		menu07On = new Image();
		menu07On.src = "../common/img/menu07_over.gif";
		menu08On = new Image();
		menu08On.src = "../common/img/menu08_over.gif";

		menu00Off = new Image();
		menu00Off.src = "../common/img/menu00.gif";
		menu01Off = new Image();
		menu01Off.src = "../common/img/menu01.gif";
		menu02Off = new Image();
		menu02Off.src = "../common/img/menu02.gif";
		menu03Off = new Image();
		menu03Off.src = "../common/img/menu03.gif";
		menu04Off = new Image();
		menu04Off.src = "../common/img/menu04.gif";
		menu05Off = new Image();
		menu05Off.src = "../common/img/menu05.gif";
		menu06Off = new Image();
		menu06Off.src = "../common/img/menu06.gif";
		menu07Off = new Image();
		menu07Off.src = "../common/img/menu07.gif";
		menu08Off = new Image();
		menu08Off.src = "../common/img/menu08.gif";

		loaded = 1;
	}
}

function switchOn(imgName) {
	if (loaded == 1) {
		imgOn = eval(imgName+"On.src");
		document[imgName].src = imgOn;
	}
}

function switchOff(imgName) {
	if (loaded == 1) {
		imgOff = eval(imgName+"Off.src");
		document[imgName].src = imgOff;
	}
}

if (isIE || isV5) {
	loadImg();
}
