var date = new Date("July 8, 2010");
var description = "The 2011 Hillsborough Balloon Festival!";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<font size=2 color=white>")
if (days > 1) {
document.write("Just ");
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 if (days < 2) {
document.write("Thank you, see you next year at " + description);
}
else if (days < 0) {
document.write("Now Happening, " + description);
}

//else if (days = -3){
//document.write("Thank You, " + description + "!");
//}
//document.write("</font></center>");

