var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
var date2;
if (date >= 1 && date <= 9) { date2 = 10};
if (date >= 10 && date <= 19) {date2 = 20};
if (date >= 20 && date <= 30) {date2 = 30};
if (date == 31) {date2 = 31};
if (month==0) textout="Jan";
if (month==1) textout="Feb";
if (month==2) textout="Mar";
if (month==3) textout="Apr";
if (month==4) textout="May";
if (month==5) textout="Jun";
if (month==6) textout="Jul";
if (month==7) textout="Aug";
if (month==8) textout="Sep";
if (month==9) textout="Oct";
if (month==10) textout="Nov";
if (month==11) textout="Dec";
textout += " " + date2 + " 2008";
//textout += " " + date2 ;

