	jQuery(document).ready(function() {
		$('#countdown_dashboard').countDown({
			targetDate: {
				'day': 		2,
				'month': 	1,
				'year': 	2012,
				'hour': 	0,
				'min': 		0,
				'sec': 		0
			},
			omitWeeks: true,
			onComplete: function() { $('#sale_special').hide() }
		});
	});

