// JavaScript Document$(document).ready(function() {						   //Coulissement de légende (Une partie cachée à visible)    $('.boxgrid.caption').hover(function() {        $(".cover", this).stop().animate({top:'70px'},{queue:false,duration:160});    }, function() {        $(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});    });});