/* Track outbound links with the "outbound" class set */

$(document).ready
(
  function()
  {
    $("a.outbound").click
    (
      function()
      {
        var url=$(this).attr("href");
        $.post("/outbound.php", "url="+url, function()
        {
          window.location.href=url;
        });

        return false;
      }
    );
  }
);

