$(document).ready(function() {
  parser = /\/([^\/]*?)\/?\?id=(.*?)$/;
  matches = parser.exec( document.location );
  $.post(
    '/tracker/lm_tracker.php',
    {
      list: matches[1],
      story_id: matches[2]
    },
    function(){},
    'text'
  );
});
