$(document).ready(function() {
  $(".intro").click(function() {
    document.location = $(this).find("a").attr("href");
    return false;
  });
});