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