function showDaysLeft () {
	// Get todays date
	var today = new Date ();
	
	// This is the 2004 tournament... change for 2005, etc
	//  NOTE:  Months work on index... 0 = Jan, 1 = Feb, etc
	var eventDate = new Date (2006,9,28);

	var daysLeft = Math.round ((eventDate - today) / 86400000);

	if (daysLeft > 0) {
		document.write ("<p class=\"raceday\">" + daysLeft + " Days Left Until Raceday</p>");
	} // if ()
	else if (daysLeft == 0) {
		document.write ("<p class=\"raceday\">Cox Plate Running Today!</p>");
	} // else
	else {
		document.write ("<p class=\"raceday\">Cox Plate for 2004 has been run</p>");
	} // else
} // showDaysLeft ()