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

	var launch = new Date(2011, 12 - 1, 17, 19, 00, 00);
	
	$('#Countdown').countdown({until: launch, format: 'DHMS', layout: '<div class="time"><span class="duration">Dagen: </span>{dn}</div><div class="time"><span class="duration">Uren: </span>{hn}</div><div class="time"><span class="duration">Minuten: </span>{mn}</div><div class="time"><span class="duration">Seconden: </span>{sn}</div>'});
	
});


