(function($){
    $.oxygen = function(options){
        if(options.args === undefined) {
            options.args = {};
        }
        if(options.args.lang === undefined) options.args.lang = document.documentElement.lang;
        var params = {
            'args': JSON.stringify(options.args),
            'source':options.source
        };
        $.post("/gate/json.php",params,options.onSuccess,"json");
    }
})(jQuery);
