$(document).ready(function(){
 
    $(".member a").hover(function() {
        $(this).next(".detail").animate({opacity: "show", top: "45"}, "slow");
    }, function() {
        $(this).next(".detail").animate({opacity: "hide", top: "60"}, "fast");
    });
});

