<!--
function setCurTime() {
	var now = new Date();
	var hours = now.getHours();
	var minutes = now.getMinutes();
	var timeValue = "" + ((hours >12) ? hours -12 : hours)
	timeValue += ((minutes < 10) ? ":0" : ":") + minutes
	timeValue += (hours >= 12) ? "pm" : "am"
//	timerRunning = true;
 
	mydate = new Date();
	myday = mydate.getDay();
	mymonth = mydate.getMonth();
	myweekday= mydate.getDate();
	weekday= myweekday;
//	myyear= mydate.getYear();
//	year = myyear;
 
	switch (myday) {
		case 0: day = " Sun, "; break;
		case 1: day = " Mon, "; break;
		case 2: day = " Tue, "; break;
		case 3: day = " Wed, "; break;
		case 4: day = " Thu, "; break;
		case 5: day = " Fri, "; break;
		case 6: day = " Sat, "; break;
	}
	switch (mymonth) {
		case 0: month = "Jan "; break;
		case 1: month = "Feb "; break;
		case 2: month = "Mar "; break;
		case 3: month = "Apr "; break;
		case 4: month = "May "; break;
		case 5: month = "Jun "; break;
		case 6: month = "Jul "; break;
		case 7: month = "Aug "; break;
		case 8: month = "Sep "; break;
		case 9: month = "Oct "; break;
		case 10: month = "Nov "; break;
		case 11: month = "Dec "; break;
	}
 
	obj = document.getElementById('today');
	obj.value = timeValue + ',' + day + month + myweekday;
	setTimeout("setCurTime()", 1000);
}
setTimeout("setCurTime()", 1000);

//-->
