How to chain divs and make them appear one by one?

How to chain divs and make them appear one by one?

 Hi,

I have a list of divs embedded into one:

   
  1. <div id="main">
  2. <div>item one</div>
  3. <div>item two</div>
  4. <div>item tree</div>
  5. <div>etc...</div>
  6. </div>
I would like to use Jquery to display the first item, then the second, then the third, etc... pretty much like a chain



Is it possible to do this using Jquery?



Thanks a lot!