// JavaScript Document
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 + ', ' + month + ' ' + date  + '</span>')
						}
}

