//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:'155px',left:'155px',height:'120px',width:'120px',border:'1px solid #cccccc'},{queue:false,duration:300});
}, function() {
$(".cover", this).stop().animate({top:'0px',left:'0px',height:'280px',width:'280px',border:'0px'},{queue:false,duration:300});
});
});





