// Countdown
$(document).ready( function(){
		// Handle the countdown timer
		var theYear = parseInt( 2011 ); // year		
		var theMonth = parseInt( 7 );	// month
		var theDay = parseInt( 1 );	// day		
		var theEnd = new Date(theYear, theMonth - 1, theDay); 
		
		$('#countdown').countdown({until: theEnd, format: 'dHMS', regional: 'en_EN' });
});
