$(document).ready(function() {


$('.boxgrid.captionfull').hover(function() {
$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
});

$('.boxgridsmall.captionfull').hover(function() {
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'98px'},{queue:false,duration:160});
});

$('.boxgridmedium.captionfull').hover(function() {
	$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
}, function() {
	$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:160});
});

$('.boxgrid.caption').hover(function() {
$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});
});

}); 


