
$(function () {

	$('#countdown').countdown({until: new Date(2011, 12 - 1, 27)}); 
	// insert new date: year, month - 1, day 
	// example: countdown until 03.06.2011 = 2011, 6 - 1, 03
 
 
   });   

