if(typeof Gallery == "undefined") Gallery={};
if(typeof Gallery.AJAX_class == "undefined") Gallery.AJAX_class={};
Gallery.AJAX_class = function() {};
Object.extend(Gallery.AJAX_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	PrevImage: function(galleryID, imageID) {
		return this.invoke("PrevImage", {"galleryID":galleryID, "imageID":imageID}, this.PrevImage.getArguments().slice(2));
	},
	NextImage: function(galleryID, imageID) {
		return this.invoke("NextImage", {"galleryID":galleryID, "imageID":imageID}, this.NextImage.getArguments().slice(2));
	},
	url: '/ajaxpro/Gallery.AJAX,Gallery.ashx'
}));
Gallery.AJAX = new Gallery.AJAX_class();


