﻿/*=============================
* m-overlay
* ============================*/
function Overlay() {
    this._module = $('#m-overlay');
    this._bind();
}

Overlay.prototype = {
    // показать оверлей
    show: function() {
        this._module.show();
    },

    //скрыть оверлей
    hide: function() {
        this._module.hide();
    },

    _bind: function() {
        var that = this;
        // клик по оверлею
        this._module.click(function() {
            that._module.trigger('hide');
        });
    },
    
    bind: function(eventType, handler) {
        $.fn.bind.apply(this._module, arguments);
    }
};
