var D = {
	days	:	["SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"],
	months	:	["JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER"],
	get		:	function() {
					var now, temp, day, month, date, year
					now   = new Date()
					day   = this.days[now.getDay()]
					month = this.months[now.getMonth()]
					temp  = String(now.getDate())
					date  = temp.length == 1 ? "0" + temp : temp
					year  = now.getFullYear()
					document.write('<span class="date">' + day + ' &middot; ' + month + ' ' + date + ' &middot; ' + year + '</span>')
				}
}