// ヘッダーの月によって背景画像変化

function monthly_graphics () {

// 日時情報取得
	var	date	= new Date();
	var	month	= date.getMonth();
	var	graphic_dat	= new Array(12);

// 1 月
	graphic_dat[0]		= "Jan";
// 2 月
	graphic_dat[1]		= "Feb";
// 3 月
	graphic_dat[2]		= "Mar";
// 4 月
	graphic_dat[3]		= "Apr";
// 5 月
	graphic_dat[4]		= "May";
// 6 月
	graphic_dat[5]		= "Jun";
// 7 月
	graphic_dat[6]		= "Jul";
// 8 月
	graphic_dat[7]		= "Aug";
// 9 月
	graphic_dat[8]		= "Sep";
// 10 月
	graphic_dat[9]		= "Oct";
// 11 月
	graphic_dat[10]		= "Nov";
// 12 月
	graphic_dat[11]		= "Dec";

// 描画処理
	document.write('<div class="' + graphic_dat[month] + '">');

}


function monthly_graphics_end () {

// 描画処理
	document.write("</div>");

}

// ヘッダーの時間によって変化

function time_comment () {

	var dd = new Date();
	var hour = dd.getHours();

	if (hour < 6) {
		document.write("スヤスヤ・・・。はっ！　お・おはようございます。ご来店をお待ちしております");
	} else if (hour < 11) {
		document.write("おはようございます！皆様にとって今日が良い１日でありますように♪");
	} else if (hour < 14) {
		document.write("<a href=\"javascript:food('http://www.lacnet.jp/web/liquid-green/index.html')\">昼食はお済みです？西宮では「ボリューム満点＆良心価格」のメニューをご用意！</a>");
	} else if (hour < 16) {
		document.write("こんにちわ！お得な長時間割引プランをご用意しております！ごゆっくりどうぞ！");
	} else if (hour < 21) {
		document.write("こんばんわ。映画やアニメ、ドラマを数多くご用意！コミックは地域ナンバー１♪");
	} else {
		document.write("夜はお得♪安～いナイトパックを使ってゲームはいかが？（宝塚店は２４時まで）");
	}

}
