  jQuery.fn.fadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: 'toggle'}, speed, easing, callback);  
  };

  jQuery(function(){    

    jQuery("#paticka_vyskakovaci").hide();
    jQuery(".click").mouseover(function() {
      jQuery("#paticka_vyskakovaci").show(); 
    });

    jQuery(".click").mouseout(function() {
      jQuery("#paticka_vyskakovaci").hide(); 
    });
    

 

  });
