
<!-- Hide from old browsers

var today = new Date();
var date = today.getDate();
var loop = 1;
cmSuffix = ""; 

 
function CreateArray(n) {this.length = n
return this } 
 
day = new CreateArray(7)
day[0]="Sunday"
day[1]="Monday"
day[2]="Tuesday"
day[3]="Wednesday"
day[4]="Thursday"
day[5]="Friday"
day[6]="Saturday" 
 
month = new CreateArray(12)
month[0]="January"
month[1]="February"
month[2]="March"
month[3]="April"
month[4]="May"
month[5]="June"
month[6]="July"
month[7]="August"
month[8]="September"
month[9]="October"
month[10]="November"
month[11]="December"


if (date == 1 || date == 21 || date == 31)
   {cmSuffix = 'st'
   }
else if (date == 2 || date == 22)
   {cmSuffix = 'nd'
   }
else if (date == 3 || date == 23)
   {cmSuffix = 'rd'
   }
   else {cmSuffix = 'th'
   };
   
   

cmDate = new String(today.getDate())
cmYear = new String(today.getFullYear())


// -->
