
$(function () {
	// countdown to july 27th 19:30
	var olympics = new Date(2012, 6, 27, 19, 30);
	
	// create new countdown
	$('#olympicsTimer').countdown(
		{
			until: olympics,
			format: 'yodHMS', // format YMDHMS - lowercase indicates they will not be shown if zero
			timezone: +0, // timezone for countdown is GMT
			labels: ['Y', 'M', 'W', 'D', 'H', 'M', 'S'], // labels for plural 
			labels1: ['Y', 'M', 'W', 'D', 'H', 'M', 'S'] // labels for singular
		}
	);
});