(function(){
var objectDom=function(a,b){
this.a=a;
this.b=b;
return this;
},
generate=function(a,b){
// здесь узнать какой метод вызывается
method(a,b);return new objectDom(a,b);
},
method=function(a,b){
var ollevent={};
objectDom.prototype={
animate:function(a,b,c){
return this;
},
};
return generate;
},
property={
ajax:function(ob){
return this;
},
version:1
};
return window.libs=function(){
for(var l in property)generate[l]=property[l];return generate;
}();
})();