DRHorton.events = DRHorton.events || {};

DRHorton.events.Event = function(type){
    this.type = type;
};

DRHorton.events.Event.method("setTarget", function(target){
    this.target = target;
});

