
GoogleAnalyticsLib = {
	SetUtmLinker: function(domain){
	
		var regex = new RegExp('http[s]?://([\w]+\.)?' + domain);
		var anchors = document.getElementsByTagName('a');
		
		for(var i = 0; i != anchors.length; i++){
			if (regex.test(anchors[i].attributes['href'].value))
				anchors[i].setAttribute('onclick', 'javascript:__utmLinker(this.href); return false;');
		}
	} 
}