var monthNames = new Array ("Jan", "Feb", "March", "April", "May", "June", "July", "Aug", "Sep", "Oct", "Nov", "Dec");var now = new Date();var amPm = (now.getHours() < 12) ? "am" : "pm";var hour = (now.getHours() > 12) ? (now.getHours() - 12) : (hour == 0) ? "12" : now.getHours();var min = (now.getMinutes() < 10) ? ("0" + now.getMinutes()) : (now.getMinutes());var year=now.getYear();if (year < 2000)    year = year + 1900;document.write (monthNames[now.getMonth()] + " " + now.getDate() + ",&nbsp;" + year +"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; " + hour + ":" + min + amPm + "&nbsp;&nbsp;&nbsp;");
