$(document).ready(function(){
	$('.boxgrid').hover(function(){
					$(".cover", this).stop().animate({bottom:'0px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({bottom:'-200px'},{queue:false,duration:160});
				});
});