//
//
//
function showCountdown () {
  var globalTimezone = -5;
  christmas = new Date("December 21, 2004 00:00:00");
  now = new Date();
  var countdown;
  var secstil = Math.round((christmas.getTime() - now.getTime())/1000);
  secstil = secstil + (globalTimezone * 60 * 60 * -1);
  var daystil = Math.ceil(((secstil/60)/60)/24);
  
  // 
  if (daystil > 1) {
    countdown = 'Only <strong>' + daystil + '</strong> days left to get your order in time for the holidays!';
  } else if (daystil == 1) {
    countdown = 'Only <strong>' + daystil + '</strong> days left to get your order in time for the holidays! ';
  } else if (daystil == 0) {
    countdown = '<strong>Today is the last day to get your order in time for the holidays!</strong>';
  } else if (daystil < 0) {
    countdown = '';
  }
  return countdown;
}





