$(document).ready( function() {
/*
$('#facebook-widget').click(function() {
	document.title = 'clicked';
});
*/
$('a').each( function() {

	var linkUrl = $(this).attr('href');

	if ( linkUrl && linkUrl.indexOf('http') >= 0 && linkUrl.indexOf(document.domain) < 0 ) {
		$(this).click( function() { return false; });
		$(this).click(function() {
			pageTracker._trackEvent('Outbound Link',linkUrl);
			setTimeout('document.location = "' + linkUrl + '"', 500)
		})
	}
});

});

