/*
	jCountdown counter provided by Web Muse: [http://www.webmuse.co.uk/projects/jcountdown-jquery-plugin/]
*/

$(document).ready(function() {
			/*
				Tips:
				
				event.target is DOM Element
				this is DOM element
				$(this) is jQuery Element
				timer is interval for countdown
				
				If a countdown should end early you could do:
				
				clearInterval( timer );
				$(this).trigger('complete');
			*/	
			

	$("#time").countdown({
        "date" : "december 11, 2013 23:59",
        "offset" : 2,
        "leadingZero" : true,
        "onChange" : function(event, settings){
           
        },
        "onComplete" : function(event) {
            $(this).html("Completed");
        }
    });

});
