var days_of_week = new Array(7);
days_of_week[0] = "Sunday";
days_of_week[1] = "Monday";
days_of_week[2] = "Tuesday";
days_of_week[3] = "Wednesday";
days_of_week[4] = "Thursday";
days_of_week[5] = "Friday";
days_of_week[6] = "Saturday";

var months_of_year = new Array(12);
months_of_year[0] = "January ";
months_of_year[1] = "February ";
months_of_year[2] = "March ";
months_of_year[3] = "April ";
months_of_year[4] = "May ";
months_of_year[5] = "June ";
months_of_year[6] = "July ";
months_of_year[7] = "August ";
months_of_year[8] = "September ";
months_of_year[9] = "October ";
months_of_year[10] = "November ";
months_of_year[11] = "December ";

date=new Date();
day=date.getDate();
year=date.getYear();
var today = new Date();
var yr = today.getFullYear();

TodaysDate="<p class='date'>"+ days_of_week[date.getDay()]+", "+months_of_year[date.getMonth()]+day+", "+yr+"<\/p>";

document.write ("<div align='center'>");
document.write(TodaysDate);
document.write ("</div>");
