$(document).ready(function()
{
	var newYear = new Date(); 
	
	newYear = new Date(y,m,d,h,mi,s,ms); //newYear.getFullYear() + 1, 1 - 1, 1); 
	
	$('#imageLayout').countdown({until: newYear, format: 'DHMS', compact: true, layout: $('#imageLayout').html()});
	 
	$('#removeCountdown').toggle(function() { 
			$(this).text('Re-attach'); 
			$('#defaultCountdown').countdown('destroy'); 
		}, 
		function() { 
			$(this).text('Remove'); 
			$('#defaultCountdown').countdown({until: newYear}); 
		} 
	);
});
