$("#container ul li:nth-child(2) a").addEvent("click", function (evt) {
  $("#content-presentation").get(this.getAttribute("href"),
    function (response) {
      var json = eval("(" + response + ")");
      $("#content-presentation").replaceContent(json.content.text);
   });
  return false;
});
--markc