addNamespace("CMS_Template");
CMS_Template.Header_class = Class.create();
CMS_Template.Header_class.prototype = (new AjaxPro.Request()).extend({
	GetSucheInfo: function(sSuchbegriff, sTxtID, callback) {
		return this.invoke("GetSucheInfo", {"sSuchbegriff":sSuchbegriff, "sTxtID":sTxtID}, callback);
	},
	SetSuchbegriff: function(sSuchbegriff, callback) {
		return this.invoke("SetSuchbegriff", {"sSuchbegriff":sSuchbegriff}, callback);
	},
	GetMLogoL: function(callback) {
		return this.invoke("GetMLogoL", {}, callback);
	},
	GetMLogoR: function(callback) {
		return this.invoke("GetMLogoR", {}, callback);
	},
	GetMeldungL: function(callback) {
		return this.invoke("GetMeldungL", {}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/CMS_Template.Header,CMS_Template.ashx";
	}
})
CMS_Template.Header = new CMS_Template.Header_class();

