// JavaScript Document

<!-- This script and many more are available free online at --><!-- The JavaScript Source!! http://javascript.internet.com --><!-- Begin
var months=new Array(13);
months[1]="Jan";
months[2]="Feb";
months[3]="Mar";
months[4]="Apr";
months[5]="May";
months[6]="Jun";
months[7]="Jul";
months[8]="Aug";
months[9]="Sep";
months[10]="Oct";
months[11]="Nov";
months[12]="Dec";
var weekday=new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
var time=new Date();
var day = weekday[time.getDay()];
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<p class='date'>");
document.write(day + ", " + lmonth + " " + date + ", " + year + " ");
/*
var hours = time.getHours()>12?time.getHours()-12:time.getHours();
var minutes = time.getMinutes()
if (minutes < 10){
minutes = "0" + minutes
}
document.write(hours + ":" + minutes + " ")
if(hours > 11){
document.write("PM")
} else {
document.write("AM")
}
*/
document.write("</p>");
// End --></script>
