<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="1229"; this[1]="12月29日午前零時、オリオンに到着します。";
     this[2]="0901"; this[3]="9月1日12時00分、オリオンを発車します。";
     this[4]="1010"; this[5]="10月10日11時00分、ニケに到着、14時00分に発車します。";
     this[6]="1023"; this[7]="10月23日3時5分、アルカディアに到着します。";
     this[8]="1026"; this[9]="10月26日13時13分、アルカディアを発車します。";
     this[10]="1103"; this[11]="11月3日21時8分、地球に到着します。";
     this[12]="1104"; this[13]="11月4日21時08分、地球を発車します。";
     this[14]="1106"; this[15]="11月6日12時00分、ベガに到着します。";
     this[16]="1122"; this[17]="11月22日7時30分、ベガを発車します。";
     this[18]="1209"; this[19]="12月9日7時6分、カペラに到着します。";
this[20]="1210"; this[21]="12月10日8時6分、カペラを発車します。";
     this[22]="1213"; this[23]="12月13日19時9分、化石の星に到着します。";
this[24]="1215";this[25]="12月15日0時27分、化石の星を発車します。";
}


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>");
}
// -->
<!--
      check();
// -->
