function arrayNameOfMonth()
{
   this[0] = "January";
   this[1] = "February";
   this[2] = "March";
   this[3] = "April";
   this[4] = "May";
   this[5] = "June";
   this[6] = "July";
   this[7] = "August";
   this[8] = "September";
   this[9] = "October";
   this[10] = "November";
   this[11] = "December";
}

function arrayNameOfWeek()
{
   this[0] = "Sunday";
   this[1] = "Monday";
   this[2] = "Tuesday";
   this[3] = "Wednesday";
   this[4] = "Thursday";
   this[5] = "Friday";
   this[6] = "Saturday";
}

function megadate()
{
   var today      = new Date();
   var monthName  = new arrayNameOfMonth();
   var weekName   = new arrayNameOfWeek();
   var day        = today.getDay();
   var date       = today.getDate();
   var month      = today.getMonth();
   var year       = today.getFullYear();

   document.write( weekName[day] + ", " + monthName[month] + " " + date + ", " + year );
}

