jQuery.fn.folder = function() {
         // faire quelque chose
        
         // Your code goes here $(".entry").
            this.hover(function(){
            
                $(this).children('a').children('p').animate({marginTop : "0px"}, 800 );
                $(this).children('a').children("img").animate({opacity: 1}, 800 );
                },
                function(){
                //TROUVER UNE SOLUTION POUR QUE L'ACTION NE SE REPETE PAS 
                //TANT QUE LA PREMIERE N'est PAS FINIE :not:animated
                $(this).children('a').children("p").animate({marginTop : "38px"}, 800 );
                $(this).children('a').children("img").animate({opacity: 0}, 800 );
            }).end();
 };