jQuery(document).ready(function($) {

  $('.tooltip').mouseleave(function(e){
    $(this).stop().hide();
  });

});

