function recordOutboundLink(link, category, action) {
    
	//_gat._getTrackerByName()._trackEvent(category, action); //sync	
	_gaq.push(['global._trackEvent', category, action]); //async
    //setTimeout('window.open("' + link.href + '")', 100);
	setTimeout('document.location = "' + link.href + '"', 100);

}

