// Countdown Intilization, options can be set here.
// Full documentation on this can be found at http://keith-wood.name/countdown.html

$(function () {
	var liftoffTime = new Date(2010, 2 - 1, 25, 17, 45);

	// anno attuale + 0, 10(ottobre)-1, 7(giorno 0.00)
	$('#count').countdown({until: liftoffTime, 
		    layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, {sn} {sl}'});
});

