jquery 1.4 how to give pause / delay to this line ?

jquery 1.4 how to give pause / delay to this line ?

how to give pause / delay to this animation ?

  1. $(document).ready(function(){
  2.  $('.boxgrid.caption').hover(function(){  
  3.         $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});  
  4.     }, function() {  
  5.         $(".cover", this).stop().animate({top:'100px'},{queue:false,duration:300});  
  6.     }); 
  7. });
this is a slide up and down animation and I need a delay before the slide down of that line

thanks