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

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

	s01On = new Image();
	s01On.src = "s01.gif";

	s02On = new Image();
	s02On.src = "s02.gif";

	s03On = new Image();
	s03On.src = "s03.gif";

	s04On = new Image();
	s04On.src = "s04.gif";

	s05On = new Image();
	s05On.src = "s05.gif";

	s07On = new Image();
	s07On.src = "s07.gif";

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