Type.registerNamespace('FindIRE');
FindIRE.SlideShow=function() {
FindIRE.SlideShow.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FindIRE.SlideShow.prototype={
GetSlides:function(succeededCallback, failedCallback, userContext) {
return this._invoke(FindIRE.SlideShow.get_path(), 'GetSlides',false,{},succeededCallback,failedCallback,userContext); },
GetImagesPath:function(succeededCallback, failedCallback, userContext) {
return this._invoke(FindIRE.SlideShow.get_path(), 'GetImagesPath',false,{},succeededCallback,failedCallback,userContext); }}
FindIRE.SlideShow.registerClass('FindIRE.SlideShow',Sys.Net.WebServiceProxy);
FindIRE.SlideShow._staticInstance = new FindIRE.SlideShow();
FindIRE.SlideShow.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; FindIRE.SlideShow._staticInstance._path = value; }
FindIRE.SlideShow.get_path = function() { return FindIRE.SlideShow._staticInstance._path; }
FindIRE.SlideShow.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
FindIRE.SlideShow._staticInstance._timeout = value; }
FindIRE.SlideShow.get_timeout = function() { 
return FindIRE.SlideShow._staticInstance._timeout; }
FindIRE.SlideShow.set_defaultUserContext = function(value) { 
FindIRE.SlideShow._staticInstance._userContext = value; }
FindIRE.SlideShow.get_defaultUserContext = function() { 
return FindIRE.SlideShow._staticInstance._userContext; }
FindIRE.SlideShow.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; FindIRE.SlideShow._staticInstance._succeeded = value; }
FindIRE.SlideShow.get_defaultSucceededCallback = function() { 
return FindIRE.SlideShow._staticInstance._succeeded; }
FindIRE.SlideShow.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; FindIRE.SlideShow._staticInstance._failed = value; }
FindIRE.SlideShow.get_defaultFailedCallback = function() { 
return FindIRE.SlideShow._staticInstance._failed; }
FindIRE.SlideShow.set_path("/SlideShow.asmx");
FindIRE.SlideShow.GetSlides= function(onSuccess,onFailed,userContext) {FindIRE.SlideShow._staticInstance.GetSlides(onSuccess,onFailed,userContext); }
FindIRE.SlideShow.GetImagesPath= function(onSuccess,onFailed,userContext) {FindIRE.SlideShow._staticInstance.GetImagesPath(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('AjaxControlToolkit');
if (typeof(AjaxControlToolkit.Slide) === 'undefined') {
AjaxControlToolkit.Slide=gtc("AjaxControlToolkit.Slide");
AjaxControlToolkit.Slide.registerClass('AjaxControlToolkit.Slide');
}
