$(document).ready(function() {
  
    
    $('.boxgrid.caption').hover(function(){
        $(".cover", this).stop().animate({
            top:'72px'
        },{
            queue:false,
            duration:160
        });
        $( 'img', this).stop().animate({opacity: .7},{
            queue:false,
            duration:160
        });
    }, function() {
        $(".cover", this).stop().animate({
            top:'150px'
        },{
            queue:false,
            duration:160
        });
        $('img', this).stop().animate({opacity: 1},{
            queue:false,
            duration:160
        });
    }); 
    
});
