// 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("February 05, 2010 16:00:00");
            $('#count').countdown({until: liftoffTime, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'});
            $('#year').text(liftoffTime.setDate());
        });

