  $(".showpearl").hover(function() {
    $("div.pearl").fadeIn("slow");
  });
  $("div.pearl").click(function() {
    $("div.pearl").fadeOut("slow");
  });
