// 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(2010, 9 - 1, 25, 20);
	$('#count').countdown({until: austDay, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, e {sn} {sl}'});
	$('#year').text(austDay.getFullYear());
});

/* http://keith-wood.name/countdown.html
 * Italian initialisation for the jQuery countdown extension
 * Written by Davide Bellettini (davide.bellettini@gmail.com) Feb 2008. */
(function($) {
	$.countdown.regional['it'] = {
		labels: ['Anni', 'Mesi', 'Settimane', 'Giorni', 'Ore', 'Minuti', 'Secondi'],
		labels1: ['Anni', 'Mesi', 'Settimane', 'Giorni', 'Ore', 'Minuti', 'Secondi'],
		compactLabels: ['a', 'm', 's', 'g'],
		timeSeparator: ':', isRTL: false};
	$.countdown.setDefaults($.countdown.regional['it']);
})(jQuery);

