// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	// your functions go here
    var newYear = new Date(); 
    newYear = new Date(2012, 10-1, 25);
    jQuery('#defaultCountdown').countdown({until: newYear});

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
