

<!-- Begin
var date = new Date("August 30, 2005");
var description = "Burning Man";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("")
if (days > 1) {
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 " + description + " starts!");
}
else {
document.write("look for us at " + description + "!");
}
document.write("");
// End -->


