 jQuery(document).ready(function(){  
      
       //Full Caption Sliding (Hidden to Visible)  
      jQuery('.boxgrid.captionfull').hover(function(){  
           jQuery(".cover", this).stop().animate({top:'147px'},{queue:false,duration:160});  
      }, function() {  
           jQuery(".cover", this).stop().animate({top:'210px'},{queue:false,duration:160});  
       });  
       
   });  