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

