/*  Google Analytics
 *
 *--------------------------------------------------------------------------*/
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:
	UA:  'UA-11620747-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);
	}
};