$(function() {
  $("a.loadWhatsNewBody")
    .click(function() {
      $("#whatsNewBody").load($(this).attr("url"));
    });
  $("#whatsNewBody").load($("a.loadWhatsNewBody:first").attr("url"));
});
