$(document).ready(function(){
	$('a.offsite').click(function() {
		/* alert(this + $(this).attr('rel') + $(this).attr('href')); */

		recordOutboundLink(this, $(this).attr('rel'), $(this).attr('href'));
	});
});

function recordOutboundLink(link, category, action) {
	_gat._getTrackerByName()._trackEvent(category, action);
	setTimeout('document.location = "' + link.href + '"', 100);
}

