// 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("October 13, 2010 00:00:01");
	$('#count').countdown({until: austDay, layout: "Stay tuned, we'll be back soon"});
	$('#year').text(austDay.getFullYear());
});
