var bronkhorstadvies = {
	
	'a.mailto' : function(el) {
		el.onclick = function() {
			this.href = "mailto:" + this.title.replace(/\[at\]/, "@");
			urchinTracker('/mailto/' + this.href);
		}
	},
	
	'a.outgoing' : function(el) {
		el.onclick = function() {
			this.target = "_blank";
			urchinTracker('/outgoing/' + encodeURIComponent(this.href));
		}
	}
	
};

Behaviour.register(bronkhorstadvies);