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

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

	j01On = new Image();
	j01On.src = "j01.gif";

	j02On = new Image();
	j02On.src = "j02.gif";

	j03On = new Image();
	j03On.src = "j03.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");
	}
}

