<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="0101"; this[1]="1月1日午前零時、アンドロメダ行き銀河超特急999号が発車しました。";
     this[2]="0202"; this[3]="2月2日5時25分、オクトパス行きプレアデス7号が到着します。";
     this[4]="0203"; this[5]="2月3日5時25分、オクトパス行きプレアデス7号が発車します。";
     this[6]="0221"; this[7]="2月22日22時22分、カペラ行きベガラス3号が発車します。";
     this[8]="0222"; this[9]="2月22日22時22分、カペラ行きベガラス3号が発車します。";
     this[10]="0630"; this[11]="7月1日午前零時、エメラルダス分岐点行きエメロード1号が発車します。";
     this[12]="0701"; this[13]="7月1日午前零時、エメラルダス分岐点行きエメロード1号が発車しました。";
     this[14]="1002"; this[15]="10月2日11時8分、カペラ行きカペラ4号が到着します。";
     this[16]="1003"; this[17]="10月3日11時8分、カペラ行きカペラ4号が発車します。";
     this[18]="1103"; this[19]="11月3日21時8分、オリオン行きオルオディア5号が到着します。";
     this[20]="1104"; this[21]="11月4日21時8分、オリオン行きオルオディア5号が発車する日です。";
     this[22]="1231"; this[23]="1月1日午前零時、アンドロメダ行き銀河超特急999号が発車します。";
this[24]="0125"; this[25]="今日は松本零士先生の誕生日です。";
}


dayLen = 30;
holy = new makeHoliday(dayLen);

function check()
{
     dt = new Date();
     m = "0"+(1+dt.getMonth());
     d = "0"+dt.getDate();
     m = m.substring(m.length-2,m.length+1);
     d = d.substring(d.length-2,d.length+1);
     dc = m+d;
     for(i=0; i<dayLen; i++) if (holy[i*2]==dc) document.write(holy[i*2+1],"<BR>");
}
// -->