<!-- © 2003 Sienna Creative Works, All rights reserved //-->
	var now = new Date();
	var weekDay = new Array(7);
	weekDay[0] = "Sunday";
	weekDay[1] = "Monday";
	weekDay[2] = "Tuesday";
	weekDay[3] = "Wednesday";
	weekDay[4] = "Thursday";
	weekDay[5] = "Friday";
	weekDay[6] = "Saturday";
	
	var thisMonth = new Array(12);
	thisMonth[0] = "January";
	thisMonth[1] = "February";
	thisMonth[2] = "March";
	thisMonth[3] = "April";
	thisMonth[4] = "May";
	thisMonth[5] = "June";
	thisMonth[6] = "July";
	thisMonth[7] = "August";
	thisMonth[8] = "September";
	thisMonth[9] = "October";
	thisMonth[10] = "November";
	thisMonth[11] = "December";
	
	var Ordinal = "th";
	if ((now.getDate() == 1) || (now.getDate() == 21) || (now.getDate() == 31)) {
		Ordinal = "st";
	}
	if ((now.getDate() == 2) || (now.getDate() == 22)) {
		Ordinal = "nd";
	}
	if ((now.getDate() == 3) || (now.getDate() == 23)) {
		Ordinal = "rd";
	}
	if ((now.getDate() == 11) || (now.getDate() == 12) || (now.getDate() == 13)) {
		Ordinal = "th";
	}
	
	var dateStamp = weekDay[now.getDay()] + ", " + thisMonth[now.getMonth()] + " " + now.getDate() + Ordinal + " " + now.getYear();

