<!-- Begin
function getTime() {
now = new Date();
y2k = new Date("Aug 12 2009 8:00:00");
days = (y2k - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (y2k - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (y2k - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (y2k - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
/*sec = (secondsRound == 1) ? " second." : " seconds.";
min = (minutesRound == 1) ? " minute" : " minutes";*/
hr = (hoursRound == 1) ? " hour, " : " hours, ";
dy = (daysRound == 1)  ? " day, " : " days, "
//document.getElementById('timeRemaining').innerHTML = daysRound  + dy + hoursRound + hr + minutesRound + " minutes<br>'til the festival begins!";
//newtime = window.setTimeout("getTime();", 1000);
}
//  End -->