<!--countdown days-->
<!-- Hide script from old browsers

	now = new Date
	thisYr = now.getYear()
	if (thisYr < 1900) {
		thisYr = thisYr+1900
	}
	nextYr = thisYr + 1

	anniv = new Date(thisYr,11,01)
	if (anniv.getTime() < now.getTime()) {
		anniv.setYear(nextYr)
	}

	birthday = new Date(thisYr,2,20 )
	if (birthday.getTime() < now.getTime()) {
		birthday.setYear(nextYr)
	}

	xmas = new Date(thisYr,10,03)
	if (xmas.getTime() < now.getTime()) {
		xmas.setYear(nextYr)
	}

	function dayToDays(inTime) {
		return (inTime.getTime() / (1000 * 60 * 60 * 24))
	}

	function daysTill(inDate) {
		return (Math.ceil(dayToDays(inDate) - dayToDays(now)))
	}

	// End hiding script from old browsers -->