// see http://www.google.com/support/forum/p/Google%20Analytics/thread?tid=4a622411a2b59f84&hl=en
function recordOutboundLink(link, category, action) {
  try {
    var pageTracker=_gat._getTracker("UA-184994-24");
    pageTracker._trackEvent(category, action);
    //setTimeout('document.location = "' + link.href + '"', 100)
    pause(100)
  }catch(err){}
}

function pause(numberMillis) {
  var now = new Date();
  var exitTime = now.getTime() + numberMillis;
  while (true) {
    now = new Date();
    if (now.getTime() > exitTime)
    return;
  }
} 
