function processData(stories) {
  var parchment = "http://parchment.googlecode.com/svn/trunk/parchment.html";

  for (var i = 0; i < stories.length; i++) {
    $("#content").append(
      '<div class="story"><a href="' + parchment + '?story=' +
      location.href + stories[i].path + ".js" +
      '">' + stories[i].desc.entityify() + '</a></div>'
    );
  }
}

$(document).ready(function() {
  processData(stories);
});

