
$(document).ready(function(){

	$('.boxgrid').hover(function(){
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
					$(this).addClass("liste_travaux_hover");
				}, function() {
					$(".cover", this).stop().animate({top:'186px'},{queue:false,duration:105});
					$(this).removeClass("liste_travaux_hover");
	});

});

