How to display div one by one (pretty much like a chain)?

How to display div one by one (pretty much like a chain)?

 Hi,

I have a list oF div embedded into one

   
  1. <div id="main">
  2. <div>item 1</div>
  3. <div>item 2</div>
  4. <div>item 3</div>
  5. <div>item 4</div>
  6. ...
  7. </div>
How can i retreive the divs embedded into #main and make them appear one by one (item 1, then the second, then the third, etc...) using jquery?


Thanks for your help!