  $(document).ready(function() {
    $(".logo").hover(
      function() { $(this).children(".caption").show(); $(".select").children(".caption").hide(); },
      function() { $(this).children(".caption").hide(); $(".select").children(".caption").show(); }
    );
  });
