First of all, thank you for this script.
When jquery.countdown.min.js file in the package is included in a page where jQuery is loaded in no-conflict mode the script fails due to the $ variable used in the script. The solution was to wrap the entire thing in a self executing anonymous function:
(function( $ ){ // the script. })( jQuery );