//www.buildinternet.com / buildinternet.developpez.com / www.onemightyroar.com

//Coulissement intégral (De caché à visible)
$(document).ready(function(){
$('.boxgrid.slideright').hover(function(){
$(".cover", this).stop().animate({top:'207px'},{queue:false,duration:300});
}, function() {
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
});
});





