// JavaScript Document

var dt = new Date("2009/5/28");

var w = ["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"];

var today0 = new Date();
var today = new Date(today0.getFullYear(),today0.getMonth(),today0.getDate());

function dt_todayBool() {
		
	if (today <= dt) {
	var m = dt.getMonth()+1;
	var d = dt.getDate();
		document.write("<div id='open'><div id='openTxt'><div id='openDay'>" +m + "月" + d + "日 "+w[dt.getDay()]+" </div></div><div id='openHour'>10:00-22:00</div><img style='margin:120px 0; float:left;' src='images/schedule_off.jpg' alt='調整さん' /></div>");
		
	} else if (today > dt){
		document.write("<div id='close'></div>");
		
	}

}