$(document).ready(function(){
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'70px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'85px'},{queue:false,duration:160});
				});

			});
