<!-- Hide from old browsers
		var today = new Date();
						
		days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
		
		todayDay = days[today.getDay()];
						
		// Set the date suffix 
		
		todayDate = today.getDate();
		
		if (todayDate == 1 || todayDate == 21 || todayDate == 31) {
			todayDate += "st";
		}
		else {
			if (todayDate == 2 || todayDate == 22) {
				todayDate += "nd";
			}
			else {
				if (todayDate == 3 || todayDate == 23) {
					todayDate += "rd";
				}
				else {
					todayDate += "th";
				}
			}
		}
		
		// Set the Month  -----------------------------
		
		months = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
		
		todayMonth = months[today.getMonth()];
		
		todayYear = today.getYear();
	
		
// use this line to include day name -    var todayString = todayDay + ", " + todayDate + " " + todayMonth + " " + ((today.getFullYear() < 100) ? "19" : "") + today.getFullYear();
var todayString = todayDate + " " + todayMonth + " " + ((today.getFullYear() < 100) ? "19" : "") + today.getFullYear();
document.write(todayString);
	//-->