	d = new Array( "Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat" );
	m = new Array( "Jan", "Feb", "March", "April", "May", "June",
					"July", "Aug", "Sept", "Oct", "Nov", "Dec" );

	today = new Date();
	day = today.getDate();
	year = today.getYear();

	document.write( d[ today.getDay() ] + ", " + day + " " + m[ today.getMonth() ] + " " + year );