if (!window.Config) {

	var ConfigClass = function() {
		this.data = {
			WEBROOT: '/',
			DEFAULT_CONTEXT: 'page',
			DEFAULT_ACTION: 'index',
			TITLE: 'cooperations',
			NAME: 'cooperations',
			ALBN_DEBUG: true
		}
	};

	ConfigClass.prototype.get = function(key) {
		if (key && this.data[key]) 
			return this.data[key];
		return null;
	}

	window.Config = new ConfigClass();

}
