///// Today's Date - Brian Spinks /////
	var today;

	today = new Date();
  	var the_dayNum=today.getDay()+1;
	switch (the_dayNum){
		case 1:
			the_dayNum="Sunday";
			break;
		case 2:
			the_dayNum="Monday";
			break;
		case 3:
			the_dayNum="Tuesday";
			break;
		case 4:
			the_dayNum="Wednesday";
			break;
		case 5:
			the_dayNum="Thursday";
			break;
		case 6:
			the_dayNum="Friday";
			break;		
		case 7:
			the_dayNum="Saturday";
			break;
	}	
	var the_day=today.getDate();
	switch (the_day){
		case 1:
			the_day="1st";
			break;
		case 2:
			the_day="2nd";
			break;
		case 3:
			the_day="3rd";
			break;
		case 4:
			the_day="4th";
			break;
		case 5:
			the_day="5th";
			break;
		case 6:
			the_day="6th";
			break;
		case 7:
			the_day="7th";
			break;
		case 8:
			the_day="8th";
			break;
		case 9:
			the_day="9th";
			break;
		case 10:
			the_day="10th";
			break;
		case 11:
			the_day="11th";
			break;
		case 12:
			the_day="12th";
			break;
		case 13:
			the_day="13th";
			break;
		case 14:
			the_day="14th";
			break;
		case 15:
			the_day="15th";
			break;
		case 16:
			the_day="16th";
			break;
		case 17:
			the_day="17th";
			break;
		case 18:
			the_day="18th";
			break;
		case 19:
			the_day="19th";
			break;
		case 20:
			the_day="20th";
			break;
		case 21:
			the_day="21st";
			break;
		case 22:
			the_day="22nd";
			break;
		case 23:
			the_day="23rd";
			break;
		case 24:
			the_day="24th";
			break;
		case 25:
			the_day="25th";
			break;
		case 26:
			the_day="26th";
			break;
		case 27:
			the_day="27th";
			break;
		case 28:
			the_day="28th";
			break;
		case 29:
			the_day="29th";
			break;
		case 30:
			the_day="30th";
			break;
		case 31:
			the_day="31st";
			break;		
	}
	var the_month=today.getMonth()+1;
	switch (the_month){
		case 1:
			the_month="January";
			break;
		case 2:
			the_month="February";
			break;
		case 3:
			the_month="March";
			break;
		case 4:
			the_month="April";
			break;
		case 5:
			the_month="May";
			break;
		case 6:
			the_month="June";
			break;
		case 7:
			the_month="July";
			break;
		case 8:
			the_month="August";
			break;
		case 9:
			the_month="September";
			break;
		case 10:
			the_month="October";
			break;
		case 11:
			the_month="November";
			break;
		case 12:
			the_month="December";
	}
	var the_year=today.getYear();
	if(the_year<2000) the_year+=1900;

	var todaysDate = the_dayNum+", "+the_month+" "+the_day;