$(document).ready(function() {

	$('#countdownCBBS').countdown({
		labels: ['Years', 'mons', 'weeks', 'days', 'hrs', 'mins', 'secs'],
		labels1: ['Year', 'mon', 'week', 'day', 'hr', 'min', 'sec'],
		timeSeparator: ':', // Separator for time periods 
		format: 'WDHM',
		until: new Date(2011, 10-1, 14, 18, 30), // new Date(year, mth - 1, day, hr, min, sec) - date/time to count down to 
        // or numeric for seconds offset, or string for unit offset(s): 
        // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds 
		timezone: -4,
		tickInterval: 1
	});

});
