[jQuery] jQuery Countdown help

[jQuery] jQuery Countdown help


I am attempting to use the jQuery Countdown plugin from
http://keith-wood.name/countdown.html, and i'm having trouble setting
the values to count down until. Any guidance would be greatly
appreciated.
$(function () {
    var austDay = new Date();
    austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
    $('#count').countdown({until: austDay, layout: '{dn} {dl}, {hn} {hl},
{mn} {ml}, and {sn} {sl}'});
    $('#year').text(austDay.getFullYear());
});
Cheers,
Jason