$(document).ready(function() {

//Coulissement vers la gauche
    $('.boxgrid.slideleft').hover(function() {
        $(".cover", this).stop().animate({left:'-180px'},{queue:false,duration:300});
    }, function() {
        $(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
    });
    
//Coulissement vers la droite
    $('.boxgrid.slideright').hover(function() {
        $(".cover", this).stop().animate({left:'180px'},{queue:false,duration:300});
    }, function() {
        $(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
    });
});
