Obligatory scroll

Obligatory scroll

Hello word !

I have question with the function ScrollTop.
I have 5 div and I want to force the scroll to the next div. But i can not !

JQUERY : 
  1. $(document).ready(function(){
  2.     
  3.       var heightSize= $(window).height();

  4.     $("#header, #bloc1, #bloc2, #bloc3, #bloc4")
  5.         .css({
  6.         "height" : heightSize,
  7.         })


  8.     $(window).scroll(function () {
  9.         $("html:not(:animated), body:not(:animated)").animate({
  10.             scrollTop: heightSize
  11.         })
  12.     });

  13. })



HTML :
  1. <div id="header">
  2. </div> <!-- header -->

  3. <div id="bloc1">
  4. </div>

  5. <div id="bloc2">
  6. </div> 

  7. <div id="bloc3">
  8. </div> 

  9. <div id="bloc4">
  10. </div>