/* Adapted from the following --
This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

function displayDate() {
  var now = new Date();
  var today = now.getDate();
  var month = now.getMonth();
    var monthName = new Array(12)
      monthName[0]="Jan ";
      monthName[1]="Feb ";
      monthName[2]="Mar ";
      monthName[3]="April ";
      monthName[4]="May ";
      monthName[5]="June ";
      monthName[6]="July ";
      monthName[7]="Aug ";
      monthName[8]="Sept ";
      monthName[9]="Oct ";
      monthName[10]="Nov ";
      monthName[11]="Dec ";

  document.write(monthName[month]+today);
}