$(function() {
  $("a.topicTitle").click(function() {
    var boxName = "topic" + $(this).attr("id") + "Body";
    var box = $("#" + boxName);
    var url = "template/info_1_" + $(this).attr("id") + ".html";
    box.load(url).toggle();
    return false;
  });
});
