$(function(){
    _.wl = {
        list: {},

        init : function(trg){
            for(var i in this.list){
                if(this.list[i]){
                    this.list[i].init(trg);
                }
            }

        },

        add : function(key, ob){
            this.list[key] = ob;
        }
    };
});