but it is not working.
Can some one please have a look.
<script>
(function($){
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear(), 4 - 1, 9, 10 );
$('#defaultCountdown').countdown({until: austDay, format:'HMS', onExpiry: reStartX});
function reStartX() {
var newDay = new Date();
newDay = new Date(newDay.getFullYear(), 4 - 1, 10, 10 );
$('#defaultCountdown').countdown({until: newDay, format:'HMS', onExpiry: reStartY});
}
function reStartY() {
var newDays = new Date();
newDays = new Date(newDays.getFullYear(), 4 - 1, 11, 10 );
$('#defaultCountdown').countdown({until: newDays, format:'HMS'});
}
});
})(jQuery);
</script>