function fncGraphicChangerByDate() {
	var	i;
	var	month;
	var	day;
	var	today;
	var	maxFile = 2;
	var	date = new Date();
	var	graphics_data = new Array(maxFile);
	var	graphics_path = new Array(maxFile);

	if ((month = (date.getMonth() + 1)) < 10) {
		month = "0" + month;
	}
	else {
		month += "";
	}
		if ((day = date.getDate()) < 10) {
		day = "0" + day;
	}
	else {
		day += "";
	}
		today = month + day;
	graphics_data[0] = "0101";
	graphics_path[0] = "./images/image01_e.gif";
	graphics_data[1] = "1226";
	graphics_path[1] = "./images/gateway_mainimg.jpg";

	for (i = 0; i < maxFile; i++) {
		if (graphics_data[i] > today) {
			if (i == 0) {
				i = maxFile;
			}
			break;
		}
	}
	i--;
		document.write("<IMG SRC=\"" + graphics_path[i] + "\">");
}

function fncGraphicChangerByDatej() {
	var	i;
	var	month;
	var	day;
	var	today;
	var	maxFile = 2;
	var	date = new Date();
	var	graphics_data = new Array(maxFile);
	var	graphics_path = new Array(maxFile);

	if ((month = (date.getMonth() + 1)) < 10) {
		month = "0" + month;
	}
	else {
		month += "";
	}
		if ((day = date.getDate()) < 10) {
		day = "0" + day;
	}
	else {
		day += "";
	}
		today = month + day;
	graphics_data[0] = "0101";
	graphics_path[0] = "./images/image01_j.gif";
	graphics_data[1] = "1226";
	graphics_path[1] = "./images/gateway_mainimg.jpg";

	for (i = 0; i < maxFile; i++) {
		if (graphics_data[i] > today) {
			if (i == 0) {
				i = maxFile;
			}
			break;
		}
	}
	i--;
		document.write("<IMG SRC=\"" + graphics_path[i] + "\">");
}