<!-- Date -->

<!-- hide --
var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
var year = now.getFullYear();
var datesuffix;
if (date==1 || date==21 || date==31) datesuffix="st"
  else if (date==2 || date==22) datesuffix="nd"
  else if (date==3 || date==23) datesuffix="rd"
  else datesuffix="th";
if (month==0)  textout="January";
if (month==1)  textout="February";
if (month==2)  textout="March";
if (month==3)  textout="April";
if (month==4)  textout="May";
if (month==5)  textout="June";
if (month==6)  textout="July";
if (month==7)  textout="August";
if (month==8)  textout="September";
if (month==9)  textout="October";
if (month==10) textout="November";
if (month==11) textout="December";
textout += " " + date + datesuffix +"," + " " + year;
document.write(textout);
// -- end hiding -->