how to solve this jquery problem

how to solve this jquery problem

Hi, I have page with jQuery  click here to see   code for this site is
  1. <script type=""  src="http://code.jquery.com/jquery-1.5.js" ></script>
  2.   <script type="text/javascript">
  3.       var delay = 4000; // you can change it
  4.       var count = 5; // How much items to animate
  5.       var showing = 3; //How much items to show at a time
  6.       var i = 0;
  7.       function move(i) {
  8.         return function() {
  9.           $('#feed'+i).remove().css('display', 'none').prependTo('#feeds');
  10.         }
  11.       }
  12.       function shift() {
  13.         var toShow = (i + showing) % count;
  14.         $('#feed'+toShow).slideDown(1000, move(i));
  15.         $('#feed'+i).slideUp(1000, move(i));
  16.         i = (i + 1) % count;
  17.         setTimeout('shift()', delay);
  18.       }
  19.       $(document).ready(function() {
  20.         setTimeout('shift()', delay);
  21.       });
  22.   </script>
  23.     </head>
  24. <body>


  25.     <div id="container">
  26.         <!-- Header Logo -->
  27.             <div class="slider"><div class="arrival_button">Wait for just 4 seconds...!</div>
  28.             <div class="sliding"><div id="feeds">
  29.                     <div class="item" id="feed0"  style="display: none;"><div class="thumbnail"><img alt="image"  src="http://www.flashdaweb.com/blog/wp-content/uploads/2008/10/website_development_program.jpg" width="125" height="100"></div><div class="info">hello this is me</div></div>
  30.                     <div class="item2" id="feed1" style="display: none;"><div class="thumbnail1"><img alt="image"  src="http://www.esellswebdesign.com/wp-content/uploads/2008/08/designing-a-fast-loading-website.jpg" width="125" height="100"></div><div class="info1">hello </div></div>

Now come towards the problems. I'm new to  jQuery thats why my question might be stupid. 
1: When the page load why it takes so much time to start sliding.
2:After sliding is completed it starts in reverse order i.e its slide up in the end i comment
$('#feed'+i).slideUp(1000, move(i));
this line but then the slide will stop when it completed. so is there a way to continously start the slide in slidedown direction.