// Countdown Intilization, options can be set here.
// Full documentation on this can be found at http://keith-wood.name/countdown.html

$(function () {
//	var austDay = new Date();
//	austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 1);
//	$('#count').countdown({until: austDay, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'});
	$('#count').countdown({until: new Date(2013, 1 - 1, 1), layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, og {sn} {sl}'});
//	$('#year').text(austDay.getFullYear());
});
