days = new Array(7)
days[0] = "Sun";
days[1] = "Mon";
days[2] = "Tue";
days[3] = "Wed";
days[4] = "Thu";
days[5] = "Fri";
days[6] = "Sat";
months = new Array(12)
months[0] = "Jan";
months[1] = "Feb";
months[2] = "Mar";
months[3] = "Apr";
months[4] = "May";
months[5] = "Jun";
months[6] = "Jul";
months[7] = "Aug";
months[8] = "Sep";
months[9] = "Oct";
months[10] = "Nov";
months[11] = "Dec";
today = new Date();
day = days[today.getDay()]
month = months[today.getMonth()]
date = today.getDate()
if (date == 1)
date = date + "st";
if (date == 2)
date = date + "nd";
if (date == 3)
date = date + "rd";
if (date > 3)
date = date + "th";
document.write ("<span id='absolute'>" + day + " " + date + " " + month + "</span>")
