$(document).ready(function(){
 
  setTimeout(function(){

  $('.storyfish').animate({width:'150px',height:'150px', top:'170px',left:'520px'},4500, 'swing');
  $('#imageYellowGoldfish').animate({width: '150px', height: '140px', top: '0px', left: '0px'}, 4500, 'swing');
 }, 1000);
  
  setTimeout(function(){
    $('#imageMultiFish').animate({width: '462px', height: '476px', top: '400px', left: '600px'},4000, 'swing');
      setTimeout(function(){ 
          $('.mainimage').animate({width: '462px', height: '476px', top: '170px', left: '100px'}, 3500, 'swing');
      }, 2000);
  }, 6000);
});


