// Countdown Intilization, options can be set here.
// Full documentation on this can be found at http://keith-wood.name/countdown.html

  $(function () {
            var liftoffTime = new Date("December 31, 2009 23:59:00");
            $('#count').countdown({until: liftoffTime, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'});
            $('#year').text(liftoffTime.setDate());
        });
