var date = new Date("Oct 3, 2008");
var description = "";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
if (days > 1) {document.write(days+1 + " days remain</strong> ");}
else if (days == 1) {document.write("It's just 2 DAYS away! ");}
else if (days == 0) {document.write("It's TOMORROW!! ");}
else {document.write("<strong>It's TODAY!! Leave Now!! Why are you in front on your computer ... shouldn't you be warming up?</strong> ");}