please help about animate

please help about animate

  1. $(document).ready(function(){
  2.   $(".arrow-layout").click(function(){
  3.     $(".arrow-layout").animate({right:'5px',opacity:'0'},"slow");
  4. $(".img-circle").animate({marginTop:'-100px',opacity:'0',},"slow");
  5. location.href='profile.html';
  6.   });
  7. });
How to animate have delay to the next script
$(".arrow-layout").animate({right:'5px',opacity:'0'},"slow");

Delay 1s

$(".img-circle").animate({marginTop:'-100px',opacity:'0',},"slow");

Delay 1s

after that redirect page to profile.html