<!--
/**
 *	Tick Function - re-written for everyone
 *	jelly_bean_junky@hotmail.com
 *
 *	Usage - Something like this in the html below the body tag:
 *
 *	<!-- ### clock ### //-->
 *	<div id="clock">&nbsp;</div>
 *	<script language="JavaScript1.2" src="js_scripts/clock.js" type="text/javascript"></script>
 *	<!-- ### end clock ### //-->
 *
 */

var DayNam = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var MnthNam = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

function tick() {
	var hours, minutes, seconds, ap;
	var intHours, intMinutes, intSeconds;	var today;
	today = new Date();
	intDay = today.getDay();
	intDate = today.getDate();
	intMonth = today.getMonth();
	intYear = today.getYear();
	intHours = today.getHours();
	intMinutes = today.getMinutes();
	intSeconds = today.getSeconds();
	timeString = DayNam[intDay]+" "+intDate;
	if (intDate == 1 || intDate == 21 || intDate == 31) {
		timeString= timeString + "st ";
	} else if (intDate == 2 || intDate == 22) {
		timeString= timeString + "nd ";
	} else if (intDate == 3 || intDate == 23) {
		timeString= timeString + "rd ";
	} else {
		timeString = timeString + "th ";
	}
	if (intYear < 2000){
		intYear += 1900;
	}
	timeString = timeString + " of " + MnthNam[intMonth] + " " + intYear;
	if (intHours == 0) {
		 hours = "12:";
		 ap = "am.";
	} else if (intHours < 12) {
		 hours = intHours + ":";
		 ap = "am.";
	} else if (intHours == 12) {
		 hours = "12:";
		 ap = "pm.";
	} else {
		 intHours = intHours - 12
		 hours = intHours + ":";
		 ap = "pm.";
	}
	if (intMinutes < 10) {
		 minutes = "0" + intMinutes;
	} else {
		 minutes = intMinutes;
	}
	if (intSeconds < 10) {
		 seconds = ":0" + intSeconds;
	} else {
		 seconds = ":" + intSeconds;
	}
	timeString = (document.all) ? timeString + ", " + hours + minutes + seconds + " " + ap:timeString + " " + hours + minutes + " " + ap;
	var clock = (document.all) ? document.all("Clock") : document.getElementById("Clock");
	clock.innerHTML = timeString;
	(document.all) ? window.setTimeout("tick();", 1000):window.setTimeout("tick();", 6000);
}
tick();
//-->