// 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();
	liftoffTime.setFullYear(2010,09,30);
	$('#count').countdown({until: liftoffTime, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, e {sn} {sl}'});
	$('#year').text(liftoffTime.setDate());
});
