$(document).ready(function() {
	// External Links
	$('a:not(.imail)').filter(function() {
		
		var theHref = this;
		if (theHref.hostname && theHref.hostname !== location.hostname) {
			$(theHref).attr('target','_blank').bind('click', function(event) {
				var code=event.charCode || event.keyCode;
				if (!code || (code && code == 13)) {
				_gaq.push(['_trackEvent', 'External Links', 'Click', this.href]);
				};
			});
		};
	});
	// Mail Clicks
	$('a.imail').filter(function() {
		$(this).bind('click', function(event) {
			var code=event.charCode || event.keyCode;
			if (!code || (code && code == 13)) {
				var a = $(this);
				var data = a.parent().parent().children().html();//.split(',');
				var br = data.indexOf('<br>') != -1;
				var country;
				if (br)
					country = data.split('<br>')[1];
				else 	
					country = data.split(', ')[1];
				//console.log(country);
				_gaq.push(['_trackEvent', 'Toimistot-Kartta', 'Email', country]);
			};
		});
	});
});



