$(document).ready(function(){
	//Thumb
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'188px'},{queue:false,duration:300});
	});

	//Big
	$('.boxgrid-big.captionfull-big').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:200});
	}, function() {
		$(".cover", this).stop().animate({top:'388px'},{queue:false,duration:200});
	});		
});