function wireUpExternals(){
	$('a').each(function(){
		if (this.hostname != location.hostname){
			$(this).click(function(){
				pageTracker._trackEvent('External', this.href);
				return true;
				});
		}
	});
}

function wireUpReport(){
	$('#footer-report a').click(function(){
				pageTracker._trackEvent('Report', 'Download');
			});
}
