<!-- hide script from old browsersvar timeZone = 0;today = new Date();var thisYear = new String( today.getFullYear() );var christmasDay = "December 25, " + thisYear + " 00:00:00";	christmas = new Date( christmasDay );var secsToGo  = Math.round((christmas.getTime() - today.getTime())/1000);secsToGo = secsToGo + ( timeZone * 60 * 60 * -1);var daysToGo = Math.floor( ( ( secsToGo/60 )/60 )/24 ) + 1;document.write("Only <b>" + daysToGo + "</b> sleeps to go!");// -- done hiding from old browsers -->
