FadeIn siblings One at a Time?

FadeIn siblings One at a Time?

Hello !

Greetings everyone ! I'm a brand new user of JQuery, but I'm already falling in love with it! While experimenting with it, I've been unsuccessful trying to fade in the elements of a list One by One....

  1. <ul id="listed">
  2.       <li>Company one</li>
  3.       <li>Company two</li>  
  4.       <li>Company three</li>          
  5. </ul>
And with JQuery the thing I'm doing is the following:

  1. $( function() { //ready handler
  2. $("#listed").children().hide();
  3. $("#listed").children().each( function(index) {
  4. $(this).fadeIn(1500);
  5. });
  6.           });  
The Jquery code above is not working as I had expected. It fade ins all the elements of the unordered list BUT all of them at once !. I need to fade in the first element, and when it's done the next sibling should start to fade in and so on....

Is there a possibility this can be done? 

Please help me !

Jose.