/* Copyright European Masonic Association 2009 - Ref 0001 */
function showTheTime() {
	var now = new Date();
	var nowTime = showTheHours(now.getHours()) + showZeroFilled(now.getMinutes()) + showZeroFilled(now.getSeconds()) + showAmPm();

	document.getElementById("showTime").innerHTML = "Today is " + getDate() + " " + nowTime;
	setTimeout("showTheTime()",1000);
	
	function showTheHours(theHour) {
		return (theHour > 0 && theHour < 13) ? theHour : (theHour == 0) ? 12 : theHour-12;
	}
	
	function showZeroFilled(inValue) {
		return (inValue > 9) ? ":" + inValue : ":0" + inValue;
	}

	function showAmPm() {
		return  (now.getHours() < 12) ? " AM" : " PM";
	}
	
	function getDate() {
		var dayName = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
		var monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
	
		var now = new Date();

		return (dayName[now.getDay()] + ", " + "<br />" + monName[now.getMonth()] + " " + now.getDate() + ", ");
	}
}


