(function($){
    $(document).ready(function() {
      $("a.back-link[!href]").each(function(e) {
          $(this).click(function(){history.go(-1);});
          if (e.preventDefault)
            e.preventDefault();
          else //IE
            return false;
      });
    });
})(jq);
