// JavaScript Document$(document).ready(function(){
								
$(document).ready(function(){

				//Légende moitié apparente
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'146px'},{queue:false,duration:160});
				});
				
});


