function pause(numberMillis) {
	var now = new Date();
	var exitTime = now.getTime() + numberMillis;
	while (true) {
		now = new Date();
		if(now.getTime() > exitTime)
		return;
		}
   }
function recordOutboundLink(link, category, action) {
  try{
    var pageTracker = _gat._getTracker("UA-1699267-1");
    pageTracker._trackEvent(category, action);
    // setTimeout('document.location = "' + link.href + '"', 100)
	 pause(100);
  } catch(err) {}
}