/*  Google Analytics
 *  (c) 2008
 *
 *--------------------------------------------------------------------------*/
document.write(unescape("%3Cscript src='" + (("https:" == document.location.protocol) ? "https://ssl." : "http://www.") + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

var ga = {
	// UA Track: interno/testes ou online
	UA: (location.hostname == '10.1.1.253' || location.hostname == 'web.cubolocal.cc') ? 'UA-3733517-4' : 'UA-3974337-1',

	track: function(view) {
		GAnalytics = _gat._getTracker(this.UA);
		GAnalytics._setDomainName('none');
		GAnalytics._setAllowLinker(true);

		if (view != false)
			GAnalytics._trackPageview(view);
	},

	tagVarDefined: function(varDefined) {		
		var utmv_cookie = document.cookie.indexOf('__utmv');

		if (utmv_cookie == -1){
			this.track(false);
			GAnalytics._setVar(varDefined);
		}
    },

	trackEvent: function(category,action,view) {
		this.track();
		GAnalytics._trackEvent(category,action,view);
	}
};