//******************************************************************
//				preloadImages
//******************************************************************

if(document.images) {
	rolloverOn = new Image();
	rolloverOn.src = "rollover1.gif";

	d01On = new Image();
	d01On.src = "d01.gif";

	d02On = new Image();
	d02On.src = "d02.gif";
}


//******************************************************************
//				imageRollovers
//******************************************************************

function imgOn(imgName) {
	imgMain = "theImage";
	if(document.images && navigator.appName == "Netscape") {
		document[imgMain].src = imgName + ".gif";
	}
	if(document.images && navigator.appName == "Microsoft Internet Explorer") {
		document[imgMain].src = eval(imgName + "On.src");
	}
}

function imgOff() {
	imgName = "rollover";
	imgMain = "theImage";
	if(document.images && navigator.appName == "Netscape") {
		document[imgMain].src = imgName + ".gif";
	}
	if(document.images && navigator.appName == "Microsoft Internet Explorer") {
		document[imgMain].src = eval(imgName + "On.src");
	}
}
