	var date = new Date("March 17, 2011");
	var description = "St. Patrick's Day 2011";
	var now = new Date();
	var diff = date.getTime() - now.getTime();
	var days = Math.floor(diff / (1000 * 60 * 60 * 24));
	document.write("<span class=maintextcountdown>")
	if (days > 1) {
	document.write(days+1 + " days until " + description);
	}
	else if (days == 1) {
	document.write("Only two days until " + description);
	}
	else if (days == 0) {
	document.write("Tomorrow is " + description);
	}
	else {
	document.write("Happy " + description + "!");
	}
	document.write("</span>");