// if the href doesn't start with thefeed
$('a[href^="http://"]').click( function () {
		// traverse up to the current post id
		f = $(this).parent().parent().parent();
		// get the href pathname contained in the h2 title (to identify the article origin)
		origin = ($('#'+f[0].id+' h2.entry-title > a[href]')[0].pathname);
		// get the current link URL
		link = ($(this)[0].href);
		// track the page
		pageTracker._trackPageview('/outgoing/'+link+origin);
});