var liftoffTime = new Date(2009,0,27);

$(function () {
  
  $('#liftoff').countdown({
    until: liftoffTime,
    compact: true,
    description: 'until DVD release'
    });

});