$(function() {
        $.Lightbox.construct({
            "show_info": true,      
            "show_extended_info": true,      
            "show_helper_text": false,
            "show_linkback": false,
            "keys": {
                close: "q",
                prev: "z",
                next: "x"
            },
            "text": {
                image: "фото",
                of: "из",
                close: "закрыть",
                closeInfo: "клик вне области фото также закроет окно",
                download: "скачать"
            }            
        });
});

    Function.prototype.bind = function (scope) {
        var fn = this;
        return function () {
            return fn.apply(scope, arguments);
        };
    };
