<!-- Begin
/*
SET TO DAY AFTER!!
*/
var date = new Date("May 22, 2010");
var description = " until distribution day";
/* 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("Important notice: Distribution moved to May 21! " + (days) + " days left " + description + "!");
}
else if (days == 1) {
document.write((days) + " day left " + description + "!");
}
else if (days == 0) {
document.write("Yearbooks are here!");
}
else {
document.write("Is there hidden gold in the yearbook archives?");
}
document.write("</h1>");
// End -->