$(document).ready(function() {
  $('a.internal').click(function() {
    if($($(this).attr("href")+":visible").length == 0) {
      $(this).text("less presentations");
    } else {
      $(this).text("more presentations");
    }
    $($(this).attr("href")).toggle();
    return false;
  });
});

