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

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

	b01On = new Image();
	b01On.src = "rb01.gif";

	b02On = new Image();
	b02On.src = "rb02.gif";

	b03On = new Image();
	b03On.src = "rb03.gif";

	b04On = new Image();
	b04On.src = "rb04.gif";

	b05On = new Image();
	b05On.src = "rb05.gif";

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

