var date = new Date("August 19, 2012");
var description = "The 2012 Rotary Chili Fest on Sunday, August 19, 2012!";
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("<br>Just ");
document.write(days+1 + " Days Until " + description);
}
//else if (days == 1) {
//document.write("Only Two Days Until " + description);
//}
else if (days == 1) {
document.write("Tomorrow is " + description);
}
else if (days == 0) {
document.write("Its here! " + description);
}
//else if (days  0) {
//document.write("Now Happening, " + description);
//}

else if (days < 1){
document.write("<br>Thank You for your participitation in " + description + " See you next year!");
}
document.write("</font></center>");


