<!--
//---------------------------------------------------
// navigation change Images
//---------------------------------------------------
var preloadFlag = false;
function newImage(arg) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
}
//---------------------------------- RELOAD IMAGE SET
function preloadImages(strPath) {
	PATH = strPath;
	if (document.images) {
		//------------------------- ON IMAGES
		sw_01ov = newImage(PATH + "btn_request_on.gif");
		sw_02ov = newImage(PATH + "news_ico_on.gif");
		preloadFlag = true;
	}
}
//---------------------------------- RELOAD IMAGE SET
function chg00(id,mode) {
	if (document.images && (preloadFlag == true)) {
		if(mode == "on"){
			document[id].src = PATH + id + "_on.gif";
		}else{
			document[id].src = PATH + id + ".gif";
		}
	}
}
function chg(id,mode) {
	if (document.images && (preloadFlag == true)) {
		if(mode == "on"){
			document[id].src = PATH + "news_ico_on.gif";
		}else{
			document[id].src = PATH + "news_ico.gif";
		}
	}
}
// -->

