if (document.images) {
	// "On" images
	adilogoon = new Image();
	adilogoon.src = "../adilogo_home.gif";
	tmaxlogoon = new Image();
	tmaxlogoon.src = "tmax_logo_home.gif";


	// "Off" images
	adilogooff = new Image();
	adilogooff.src = "../adilogo.gif";
	tmaxlogooff = new Image();
	tmaxlogooff.src = "tmax_logo.gif";

}

function imgOn(imgName) {
	if (document.images && imgName) {
		document.images[imgName].src = eval(imgName + "on.src");
	}
	return;
}

function imgOff(imgName) {
	if (document.images && imgName) {
		document.images[imgName].src = eval(imgName + "off.src");
	}
	return;

}

