$(document).ready(function(){
    $('.boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({top:'72px'},{queue:false,duration:200});
    }, function() {
        $(".cover", this).stop().animate({top:'172px'},{queue:false,duration:350});
    });
});