Something like this:

$(".logo").hover(function(){
        $(this).children(".caption").animate({opacity:"show"},
"fast");

        },
        function(){
       $(this).children(".caption").animate({opacity:"hide"},
"slow");
});

Reply via email to