$(document).ready(function() {
	$('a').filter(function(index){
return !this.href.match(/^mailto:/) 
    && (this.hostname != document.location.hostname);
}).click(function(){
		_gaq.push(['_trackEvent','Outbound','Link',$(this).attr('href')]);
	});
	$('area').click(function(){
		_gaq.push(['_trackEvent','Outbound','Area',$(this).attr('href')]);
	});
});

