			// Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)
			function tick() {
			var hours, minutes, seconds, ap;
			var intHours, intMinutes, intSeconds;
			var today;
			today = new Date();
			intHours = today.getHours();
			intMinutes = today.getMinutes();
			intSeconds = today.getSeconds();
			if (intHours < 10) {
			hours = "0"+intHours+":";
			} else {
			intHours = intHours
			hours = intHours + ":";	
			}
			if (intMinutes < 10) {
			minutes = "0"+intMinutes+":";
			} else {
			minutes = intMinutes+":";
			}
			if (intSeconds < 10) {
			seconds = "0"+intSeconds+" ";
			} else {
			seconds = intSeconds+" ";
			}
			timeString = hours+minutes+seconds;
			Clock.innerHTML = timeString;
			window.setTimeout("tick();", 100);
			}
			window.onload = tick;
