// Javascript document.

// Get today's date.
var d = new Date();

// Set up to translate from the day number to the day name (e.g. 0 = "Sunday").
var days = new Array(7);
days[0] = "Sunday";
days[1] = "Monday";
days[2] = "Tuesday";
days[3] = "Wednesday";
days[4] = "Thursday";
days[5] = "Friday";
days[6] = "Saturday";

// Set up to translate from the month number to the month name (e.g. 0 = "January").
var months = new Array(12);
months[0] = "January";
months[1] = "February";
months[2] = "March";
months[3] = "April";
months[4] = "May";
months[5] = "June";
months[6] = "July";
months[7] = "August";
months[8] = "September";
months[9] = "October";
months[10] = "November";
months[11] = "December";

// Write out the date (in the desired format).
document.write("&nbsp; " + days[d.getDay()] + ", " + months[d.getMonth()] + " " + d.getDate() + " - " + d.getFullYear());

/*
	NOTE:
	If the browser does not allow scripts to run, then no text will be displayed where the day is supposed to be.

*/
