// JavaScript Document
$(document).ready(function(){
	$('.boxgrid.captionfull').hover(function(){
        $(".cover", this).stop().animate({left:'0px'},{queue:false,duration:160});
        }, function() {
	    $(".cover", this).stop().animate({left:'534px'},{queue:false,duration:160});
    });
});