
jQuery.noConflict();
jQuery(function($){

	$("a[href^=http], area[href^=http]").each(function(){
		if (this.href.indexOf(location.hostname) == -1){
			$(this).attr({ "target":"_blank", "rel":"external" });
			pageTracker._trackPageview('/outgoing/'+ $(this).attr('href'));
		}
	});

});
