<!--
function makeHoliday(n){
     this.length = n*2;
     this[0]="1010"; this[1]="10月10日15時00分、ニケを発車します。";
     this[2]="1021"; this[3]="10月21日6時29分、マザービーナスに到着します。";
     this[4]="1025"; this[5]="10月25日7時10分、マザービーナスを発車します。";
     this[6]="1110"; this[7]="11月10日8時1分、バランに到着します。";
     this[8]="1115"; this[9]="11月15日6時31分、バランを発車します。";
     this[10]="1229"; this[11]="12月29日13時59分、大マゼランに到着します。";
     this[12]="1230"; this[13]="12月30日13時59分、大マゼランを発車します。";
     this[14]="0201"; this[15]="2月1日午前零時、小マゼランに到着します。";
}


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();
// -->
