var SmtLing = (SmtLing) ? SmtLing : {};
SmtLing.GA = {};
SmtLing.GA.config = {
	googleAnalyticsKey  :   null,
    serverName : null
};
SmtLing.GA.init = function() {
	try {		
		this.googlePageTracker = _gat._getTracker(this.config.googleAnalyticsKey);
		this.googlePageTracker._setDomainName(this.config.serverName);
		this.googlePageTracker._setAllowHash(false);
		this.googlePageTracker._trackPageview();
	} catch(err) {}
};
