var date = new Date("November 27  2007");
var description = "";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
document.write("<right>")
if (days > 1) {
document.write(days+1 + " days till start " + description);
}
else if (days == 1) {
document.write("Only two days till start" + description);
}
else if (days == 0) {
document.write("Tomorrow is race day" + description);
}
else {
document.write("It's" + "Started" + "!");
}
document.write("</right>");
