


		now=new Date()
	day=now.getDate()
	month=now.getMonth()
	weekday=now.getDay()
	a=new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday')
	b=new Array('xx','st','nd','rd','th','th','th','th','th','th','th','th','th','th','th','th','th','th','th','th','th','st','nd','rd','th','th','th','th','th','th','th','st')
	c=new Array('January','February','March','April','May','June','July','August','September','October','November','December')
document.write(a[weekday] + "<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; " + c[month] + " " + day + b[day])
