jQuery(function($) {
    var custom = (function() {
        var $this;
        var page = 1;

        return {
            init: function(el) {
                if ($this) {
                    return ;
                }

                $this = this;
            }
        };
    })();

    custom.init();
});