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

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

	hs01On = new Image();
	hs01On.src = "hs01.gif";

	hs02On = new Image();
	hs02On.src = "hs02.gif";

	hs03On = new Image();
	hs03On.src = "hs03.gif";

	bs01On = new Image();
	bs01On.src = "bs01.gif";

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

