function weekDays() 
{
   
this[0]="Sunday"; 
this[1]="Monday"; 
this[2]="Tuesday"; 
this[3]="Wednesday";
   
this[4]="Thursday"; 
this[5]="Friday"; 
this[6]="Saturday";
   
this.length=7; 
}



function textMonths() 
{
   
this[0]="January"; 
this[1]="February"; 
this[2]="March"; 
this[3]="April";
   
this[4]="May"; 
this[5]="June"; 
this[6]="July"; 
this[7]="August";
   
this[8]="September"; 
this[9]="October"; 
this[10]="November"; 
this[11]="December";
   
this.length=12; 
}



function date_endings() 
{
   
this[1]="st"; 
this[2]="nd"; 
this[3]="rd"; 
this[4]="th"; 
this[5]="th"; 
this[6]="th";
   
this[7]="th"; 
this[8]="th"; 
this[9]="th"; 
this[10]="th"; 
this[11]="th"; 
this[12]="th";
   
this[13]="th"; 
this[14]="th"; 
this[15]="th"; 
this[16]="th"; 
this[17]="th";
   
this[18]="th"; 
this[19]="th"; 
this[20]="th"; 
this[21]="st"; 
this[22]="nd";
   
this[23]="rd"; 
this[24]="th"; 
this[25]="th"; 
this[26]="th"; 
this[27]="th";
   
this[28]="th"; 
this[29]="th"; 
this[30]="th"; 
this[31]="st";
   
this.length=31; 
}


darr = new weekDays(); 
marr = new textMonths(); 
narr = new date_endings(); 
now = new Date();
