﻿function ctoday(){
nowDate=new Date();
theMonth=nowDate.getMonth();
theDay=nowDate.getDate();

if (theMonth==0) {theNow=nowDate.getDate()};
if (theMonth==1) {theNow=nowDate.getDate()+31};
if (theMonth==2) {theNow=nowDate.getDate()+60};
if (theMonth==3) {theNow=nowDate.getDate()+91};
if (theMonth==4) {theNow=nowDate.getDate()+121};
if (theMonth==5) {theNow=nowDate.getDate()+152};
if (theMonth==6) {theNow=nowDate.getDate()+182};
if (theMonth==7) {theNow=nowDate.getDate()+213};
if (theMonth==8) {theNow=nowDate.getDate()+244};
if (theMonth==9) {theNow=nowDate.getDate()+274};
if (theMonth==10) {theNow=nowDate.getDate()+305};
if (theMonth==11) {theNow=nowDate.getDate()+335};

text=new Array(366);

// Січень
/*18*/ text[18]="";
/*19*/ text[19]="red";
/*20*/ text[20]="";
/*21*/ text[21]="";
/*22*/ text[22]="red";
/*23*/ text[23]="";
/*24*/ text[24]="";
/*25*/ text[25]="";
/*26*/ text[26]="";
/*27*/ text[27]="";
/*28*/ text[28]="";
/*29*/ text[29]="red";
/*30*/ text[30]="";
/*31*/ text[31]="";
//Лютий
/*01*/ text[32]="";
/*02*/ text[33]="";
/*03*/ text[34]="";
/*04*/ text[35]="";
/*05*/ text[36]="red";
/*06*/ text[37]="";
/*07*/ text[38]="";
/*08*/ text[39]="";
/*09*/ text[40]="";
/*10*/ text[41]="";
/*11*/ text[42]="";
/*12*/ text[43]="red";
/*13*/ text[44]="";
/*14*/ text[45]="";
/*15*/ text[46]="red";
/*16*/ text[47]="";
/*17*/ text[48]="";
/*18*/ text[49]="";
/*19*/ text[50]="red";
/*20*/ text[51]="";
/*21*/ text[52]="";
/*22*/ text[53]="";
/*23*/ text[54]="";
/*24*/ text[55]="";
/*25*/ text[56]="";
/*26*/ text[57]="red";
/*27*/ text[58]="";
/*28*/ text[59]="";
/*29*/ text[60]="";
//Березень
/*01*/ text[61]="";
/*02*/ text[62]="";
/*03*/ text[63]="";
/*04*/ text[64]="red";
/*05*/ text[65]="";
/*06*/ text[66]="";
/*07*/ text[67]="";
/*08*/ text[68]="";
/*09*/ text[69]="";
/*10*/ text[70]="";
/*11*/ text[71]="red";
/*12*/ text[72]="";
/*13*/ text[73]="";
/*14*/ text[74]="";
/*15*/ text[75]="";
/*16*/ text[76]="";
/*17*/ text[77]="";
/*18*/ text[78]="red";
/*19*/ text[79]="";
/*20*/ text[80]="";
/*21*/ text[81]="";
/*22*/ text[82]="";
/*23*/ text[83]="";
/*24*/ text[84]="";
/*25*/ text[85]="red";
/*26*/ text[86]="";
/*27*/ text[87]="";
/*28*/ text[88]="";
/*29*/ text[89]="";
/*30*/ text[90]="";
/*31*/ text[91]="";
document.getElementById('caldate').style.color = text[theNow];
}




