$(document).ready(function() {
  $("#view-testimonials").click(function(e) {
    $("#testimonials ul").slideToggle("normal");
    e.preventDefault();
  });

  // open external links in new window
  $("a[rel=external]").click(function() {
    window.open($(this).attr("href"));
    return false;
  })
});

