// JavaScript Document
//
var _local_preferences = {
	countdown_timer: hse_countdown_timer_init
	}

/* this is the same code as occurs inline */
function hse_countdown_timer_init(){
/* 2.3     Countdown timers utilize the generic 'load external' function to run the plugin. */
            var _options = {
                            runif:function(){
                                    return $(".countdown").length
                            },
                            success:function(){
                                    $(".countdown").countdown();
                            },
                            path:_hse.relativePathModifier+'assets/js/jquery.countdown.min.js'
                        }
                
            // uncomment this next line to get firebug to tell you what the path is - development only
            //console.log (_options.path);
            hse_load_external (_options);
            
} 
