<!-- JavaScript
	//
	function isAprilFool() {
		var date, month, day;

		// 日時情報取得
		date  = new Date();
		month = date.getMonth() + 1;
		day   = date.getDate();
		// ４月１日か調べる
		if(month == 4 && day == 1) {
			return true;
		} else {
			return false;
		}
	}
	//
	function bodyColor() {
		if(isAprilFool()) {
			document.write("<body bgcolor=\"#FFFF40\">");
		} else {
			document.write("<body>");
		}
	}
//-->
