$(document).ready(function(){

        $('.facebook-close').click(function(e){
                // Make the id overview show
                    $("#tooltip-facebook").fadeOut('slow');
                
                // override default a behavior
                e.preventDefault();
              
     });

        $('.youtube-close').click(function(e){
                // Make the id overview show
                    $("#tooltip-youtube").fadeOut('slow');
                
                // override default a behavior
                e.preventDefault();
              
        });

});