<!-- Begin
/*
SET TO DAY AFTER!!
*/
var date = new Date("February 18, 2012");
var description = "prices go up";
/* var description = "underclass retakes" */;
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<h1>")
if (days > 1) {
document.write("...but only " + days + " days left until " + description + "!");
}
else if (days == 1) {
document.write("...but yearbook " + description + " after tomorrow!");
}
else if (days == 0) {
document.write("...but it&#8217;s your last day before " + description + "!");
}
else {
document.write("Time&#8217;s slipping away. Get your book before they&#8217;re gone!");
}
document.write("</h1>");
// End -->
