Edit in JSFiddle

(function($, exports){
    var mod = function(){};
    mod.fn = mod.prototype;
    mod.fn.proxy = function(func){
        return $.proxy(func, this);
    };
    mod.fn.load = function(func){
        this.proxy(func)();
    };
    mod.fn.include = function(ob){
        $.extend(this, ob);
    };
    exports.Controller = mod;
}(jQuery, window));

(function($, Controller){
    var mod = new Controller;
    mod.toggleClass = function(e){
        this.view.toggleClass('over', e.data);
    };
    mod.load(function(){
        this.view = $('#view');
        this.view.mouseover(this.proxy(this.toggleClass));
        this.view.mouseout(this.proxy(this.toggleClass));
    });
}(jQuery, Controller));
<div id="view"></div>
#view{
    width:100px;
    height:100px;
    background:#000;
}
#view.over{
    background:#cc0000;
}

External resources loaded into this fiddle: