jQuery(function() {
  $("#eventDataListing h3").fadeTo(1, 0.7);
  return $(".doShowMoreEvent").click(function() {
    $(this).closest("p").hide().next("p").show();
    return false;
  });
});

