<!-- hide this script tag's contents from old browsers
      
   /* today = new Date();
      BigDay = new Date("March 15, 2006")
      msPerDay = 24 * 60 * 60 * 1000 ;
      timeLeft = (BigDay.getTime() - today.getTime());
      e_daysLeft = timeLeft / msPerDay;
      daysLeft = Math.ceil(e_daysLeft);
      e_hrsLeft = (e_daysLeft - daysLeft)*24;
      hrsLeft = Math.floor(e_hrsLeft);
      minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);*/
      document.getElementById('daysSpan').outerHTML = 'Days to go:' + '<span id=\'daysSpan\' class=\'days\'>' + '0' + '</span>';

       // -- done hiding from old browsers -->