
$(function () {
	var austDay = new Date();
	austDay = new Date(austDay.getFullYear() + 0, 11 - 1, 5, 14, 0, 0); // 0, 11 - 1, 5, 14, 0, 0 = 2011, November 5, 14:00
	$('#defaultCountdown').countdown({until: austDay, format: 'DHMS'});
	$('#year').text(austDay.getFullYear());
});

