//Use this to set the date to which the timer counts down to

//Edit line 17. Input your desired date using the format below:
//
// 		var launch = new Date(yyyy, oo - 1, dd, hh, mm, ss);
//
// where yyyy = year, oo = month (e.g. Sep = 09), dd = day, hh = hour (e.g. 5pm = 17), mm = min and ss = seconds
//
// for exmaple, July 12th, 2012, at 18:43pm would be written as below:
//
// 		var launch = new Date(2012, 07 - 1, 12, 18, 43, 00);

$(function () {
	
	//modify the line below to use your own launch date, following the instructions above:

	var launch = new Date(2010, 11 - 1, 15, 09, 10, 00);
	
	$('#Countdown').countdown({until: launch, format: 'DHMS', layout: '<div class="time">{dn}<br><span class="duration">days</span></div><div class="time">{hn}<br><span class="duration">hours</span></div><div class="time">{mn}<br><span class="duration">minutes</span></div><div class="time">{sn}<br><span class="duration">seconds</span></div>'});
	
});


