$(document).ready(function(){


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

});