/** used to track outgoing page links 
 *
 onClick="recordOutboundLink(this);return false;"
 ***/

  function recordOutboundLink(link) {
     category = "Outbound Link";
    //_gat._getTrackerByName()._trackEvent(category, link.href);
    _gaq.push(['_trackEvent', category, link.href]);
    setTimeout('document.location = "' + link.href + '"', 100);
  }

