﻿function HomeAnim(){
  $('.Anim1').delay(100).show();
  $('.Anim1 .a').delay(200).show().animate({ top: '0px' }, 500);
  $('.Anim1 .b').delay(750).show().animate({ top: '0px' }, 500);
  $('.Anim1 .a').delay(3000).show().animate({ top: '-150px' }, 500);
  $('.Anim1 .b').delay(2500).show().animate({ top: '150px' }, 500);
  //$('.Anim1').delay(3100).hide();
  $('.Anim2').delay(500).show();
  $('.Anim2').delay(3000).show().animate({ left: '0px' }, 1500, 'easeOutBounce', '');
  $('.Anim2').delay(3000).show().animate({ left: '600px' }, 500);

  $('.Anim3').delay(500).show();
  $('.Anim3 .a').delay(8200).show().animate({ top: '10px' }, 500);
  $('.Anim3 .b').delay(8200).show().animate({ top: '10px' }, 1000, 'easeOutElastic', '');
  $('.Anim3 .c').delay(8200).show().animate({ top: '10px' }, 500);

  $('.Anim3 .a').delay(3000).show().animate({ top: '100px' }, 1000, 'easeInElastic', '');
  $('.Anim3 .b').delay(3000).show().animate({ top: '-100px' }, 500);
  $('.Anim3 .c').delay(3000).show().animate({ top: '100px' }, 1000, 'easeInElastic', '');

  $('.Anim4').delay(500).show();
  $('.Anim4').delay(12500).show().animate({ left: '20px' }, 1500, 'easeOutCirc', '');
  $('.Anim4').delay(3000).show().animate({ left: '-350px' }, 1500, 'easeInCirc', '');

  $('.Anim5').delay(500).show();
  $('.Anim5 .a').delay(20000).show().animate({ left: '10px' }, 500);
  $('.Anim5 .b').delay(20000).show().animate({ left: '90px' }, 1000, 'easeOutBounce', '');

  $('.Anim5 .a').delay(3000).show().animate({ left: '-300px' }, 1000, 'easeInBounce', '');
  $('.Anim5 .b').delay(2500).show().animate({ left: '-300px' }, 500, 'easeOutBounce', '');

  $('.Anim6').delay(500).show();
  $('.Anim6').delay(23500).show().animate({ top: '20px' }, 1500, 'easeInOutBounce', '');
  $('.Anim6').delay(3000).show().animate({ top: '110px' }, 1500, 'easeInOutBounce', '');

  $('.Anim7').delay(500).show();
  $('.Anim7').delay(28000).show().animate({ left: '10px' }, 1500, 'easeInOutBounce', '');
  $('.Anim7').delay(3000).show().animate({ left: '-500px' }, 1500, 'easeInOutBounce', '');

}
