$(document).ready(function(){  
        //マスオーバー時にキャンプション表示  長い画像
        $('.boxgrid.captionfull').hover(function(){  
            $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});  
        }, function() {  
            $(".cover", this).stop().animate({top:'373px'},{queue:false,duration:300});  
        }); 
		//マスオーバー時にキャンプション表示  短い画像
        $('.boxgrid2.captionfull2').hover(function(){  
            $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});  
        }, function() {  
            $(".cover", this).stop().animate({top:'124px'},{queue:false,duration:300});  
        }); 
    });

