﻿//<![CDATA[

var dayarray=new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
var montharray=new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');

function getthedate(){
mydate=new Date();
year=mydate.getUTCFullYear();
day=mydate.getDay();
month=mydate.getMonth();
daym=mydate.getDate();
if(daym<10) {
daym='0'+daym;
}
hours=mydate.getHours();
minutes=mydate.getMinutes();
seconds=mydate.getSeconds();
dn='AM';
if(hours>=12) {
dn='PM';
}

cdate=dayarray[day]+', '+montharray[month]+' '+daym+', '+year;

document.getElementById('clock').firstChild.nodeValue=cdate;

setTimeout('getthedate()',1000);
}
window.onload=function() {
getthedate();
}
//]]>

