$(document).ready(function(){
    $('.item .boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({
            top:'110px'
        },{
            queue:false,
            duration:160
        });
    }, function() {
        $(".cover", this).stop().animate({
            top:'125px'
        },{
            queue:false,
            duration:160
        });
    });
    $('.item_big .boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({
            top:'270px'
        },{
            queue:false,
            duration:160
        });
    }, function() {
        $(".cover", this).stop().animate({
            top:'300px'
        },{
            queue:false,
            duration:160
        });
    });
});
