/*
CQ.Ext.namespace("COGNIFIDE.investec");
COGNIFIDE.investec.SessionStore = CQ.Ext.extend(CQ_Analytics.ProfileDataMgr, {
	constructor: function() {
		this.init();
		this.setProperty("x". "y");
	}
});

COGNIFIDE.investec.prototype.STOREKEY = "INVESTEC";
COGNIFIDE.investec.prototype.STORENAME = "investec";


COGNIFIDE.investec.sessionStore = new COGNIFIDE.investec.SessionStore();

// as soon as CCM has loaded the config, "configloaded" event is fired.
CQ_Analytics.CCM.addListener("configloaded", function() {
	alert(this);
	// load ths initial data in the new store
	this.loadInitProperties(CQ_Analytics.CCM.getInitialData(this.getName()));

	// if display is need, add to the new store the clickstreamcloud UI

	CQ_Analytics.ClickstreamcloudUI.register(this.getSessionStore(),
	// CCM gives the initial config of the store
	CQ_Analytics.CCM.getUIConfig(this.getName()));

	// registers the new store to the CCM
	CQ_Analytics.CCM.register(this);
}, COGNIFIDE.investec.sessionStore);
*/
//CQ_Analytics.ProfileDataMgr.setProperty("userType", "corporate");

