var BackgroundImages=function() {
BackgroundImages.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
BackgroundImages.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return BackgroundImages._staticInstance.get_path();},
GetBackgroundImages:function(sectionName,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetBackgroundImages',false,{sectionName:sectionName},succeededCallback,failedCallback,userContext); }}
BackgroundImages.registerClass('BackgroundImages',Sys.Net.WebServiceProxy);
BackgroundImages._staticInstance = new BackgroundImages();
BackgroundImages.set_path = function(value) { BackgroundImages._staticInstance.set_path(value); }
BackgroundImages.get_path = function() { return BackgroundImages._staticInstance.get_path(); }
BackgroundImages.set_timeout = function(value) { BackgroundImages._staticInstance.set_timeout(value); }
BackgroundImages.get_timeout = function() { return BackgroundImages._staticInstance.get_timeout(); }
BackgroundImages.set_defaultUserContext = function(value) { BackgroundImages._staticInstance.set_defaultUserContext(value); }
BackgroundImages.get_defaultUserContext = function() { return BackgroundImages._staticInstance.get_defaultUserContext(); }
BackgroundImages.set_defaultSucceededCallback = function(value) { BackgroundImages._staticInstance.set_defaultSucceededCallback(value); }
BackgroundImages.get_defaultSucceededCallback = function() { return BackgroundImages._staticInstance.get_defaultSucceededCallback(); }
BackgroundImages.set_defaultFailedCallback = function(value) { BackgroundImages._staticInstance.set_defaultFailedCallback(value); }
BackgroundImages.get_defaultFailedCallback = function() { return BackgroundImages._staticInstance.get_defaultFailedCallback(); }
BackgroundImages.set_path("/BackgroundImages.asmx");
BackgroundImages.GetBackgroundImages= function(sectionName,onSuccess,onFailed,userContext) {BackgroundImages._staticInstance.GetBackgroundImages(sectionName,onSuccess,onFailed,userContext); }

