/* /controls/categories/control.asmx */
addNamespace("LS.Lomedet.Web.Controls.categories.control_service");
LS.Lomedet.Web.Controls.categories.control_serviceClass=new Class({
	Extends:WebService,
	url:"/controls/categories/control.asmx",
	
HelloWorld:function (onSuccess,onFailure) {
	return WebService.prototype.send.apply(LS.Lomedet.Web.Controls.categories.control_service,["HelloWorld",{},onSuccess,onFailure]);
},
GetGallery:function (id,onSuccess,onFailure) {
	return WebService.prototype.send.apply(LS.Lomedet.Web.Controls.categories.control_service,["GetGallery",{id:id},onSuccess,onFailure]);
}
});
LS.Lomedet.Web.Controls.categories.control_service=new LS.Lomedet.Web.Controls.categories.control_serviceClass();


