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