daytext = new Array(7);
daytext[1] = "Mon";
daytext[2] = "Tues";
daytext[3] = "Wed";
daytext[4] = "Thurs";
daytext[5] = "Fri";
daytext[6] = "Sat";
daytext[0] = "Sun";

monthtext = new Array(12);
monthtext[0] = "Jan";
monthtext[1] = "Feb";
monthtext[2] = "Mar";
monthtext[3] = "Apr";
monthtext[4] = "May";
monthtext[5] = "Jun";
monthtext[6] = "Jul";
monthtext[7] = "Aug";
monthtext[8] = "Sept";
monthtext[9] = "Oct";
monthtext[10] = "Nov";
monthtext[11] = "Dec";

var append = "";
now = new Date();
day = now.getDay()
date = now.getDate();
month = now.getMonth();
year = now.getYear();
textyear = year.toString();
smallyear = textyear.substring(2,4);
if (date == 1) append = "st";
if (date == 2) append = "nd";
if (date == 3) append = "rd";
if (date >= 4) append = "th"; 
document.write(daytext[day]+" " + date + append + " "  + monthtext[month] + " '" + smallyear);


