  <!-- JavaScript
	//
	// monthly_graphics () : 季節によって違う画像を表示
	///////////////////////////////////////////
	// ※ユーザー設定箇所は 1 箇所あります。 //
	///////////////////////////////////////////
	function monthly_graphics (date) {
		//
		// 日時情報取得
		//
		//var	date	= new Date();
		//var	month	= date.getMonth();
		var	month	= date - 1;

		var	graphic_dat	= new Array(12);
		var	graphic_width	= new Array(12);
		var	graphic_height	= new Array(12);
		//////////////////////////////////////////////////////////
		// ***** ここからユーザーの設定箇所 (1) *****
		//
		// １． 画像ファイル設定
		//      季節ごとの画像ファイルを月ごとに設定します。
		//          graphic_dat[?]	: 画像ファイル名
		//          graphic_width[?]	: 画像の幅   (単位 : dot)
		//          graphic_height[?]	: 画像の高さ (単位 : dot)
		//      をそれぞれ記入します。
		//      [?] の ? には月から１引いた値、 0 〜 11 
		//      が入ります。例えば２月のデータを設定するなら、
		//      graphic_dat[1] に画像ファイルを指定します。
		//
		// 1 月
		graphic_dat[0]		= "../event/img/ti01.gif";
		graphic_width[0]	= "180";
		graphic_height[0]	= "36";
		// 2 月
		graphic_dat[1]		= "../event/img/ti02.gif";
		graphic_width[1]	= "180";
		graphic_height[1]	= "36";
		// 3 月
		graphic_dat[2]		= "../event/img/ti03.gif";
		graphic_width[2]	= "157";
		graphic_height[2]	= "36";
		// 4 月
		graphic_dat[3]		= "../event/img/ti04.gif";
		graphic_width[3]	= "163";
		graphic_height[3]	= "36";
		// 5 月
		graphic_dat[4]		= "../event/img/ti05.gif";
		graphic_width[4]	= "147";
		graphic_height[4]	= "36";
		// 6 月
		graphic_dat[5]		= "../event/img/ti06.gif";
		graphic_width[5]	= "155"
		graphic_height[5]	= "36";
		// 7 月
		graphic_dat[6]		= "../event/img/ti07.gif";
		graphic_width[6]	= "179";
		graphic_height[6]	= "36";
		// 8 月
		graphic_dat[7]		= "../event/img/ti08.gif";
		graphic_width[7]	= "155";
		graphic_height[7]	= "36";
		// 9 月
		graphic_dat[8]		= "../event/img/ti09.gif";
		graphic_width[8]	= "194";
		graphic_height[8]	= "36";
		// 10 月
		graphic_dat[9]		= "../event/img/ti10.gif";
		graphic_width[9]	= "179";
		graphic_height[9]	= "36";
		// 11 月
		graphic_dat[10]		= "../event/img/ti11.gif";
		graphic_width[10]	= "187";
		graphic_height[10]	= "36";
		// 12 月
		graphic_dat[11]		= "../event/img/ti12.gif";
		graphic_width[11]	= "187";
		graphic_height[11]	= "36";
		//
		// ***** ここまでユーザーの設定箇所 (1) *****
		//////////////////////////////////////////////////////////

		//
		// 描画処理
		//
		if ((graphic_width[month] == "") || (graphic_height[month] == "")) {
			document.write('<IMG SRC="' + graphic_dat[month] + '">');
		}
		else if (graphic_dat[month] != "") {
			document.write('<IMG SRC="' + graphic_dat[month] + '" WIDTH=' + graphic_width[month] + " HEIGHT=" + graphic_height[month] + ">");
		}
	}
  //end -->
