[jQuery] Looking for an automated image replace loop
I have this list of images:
<ul>
<li><img src="image1.jpg" alt="Image 1" /></li>
<li style="display: none"><img src="image2.jpg" alt="Image 2" /></
li>
<li style="display: none"><img src="image3.jpg" alt="Image 3" /></
li>
</ul>
What I would like to have is an jQuery method which fades Image1 after
a few seconds and then appears Image2. And so on. After the last
image, Image 1 should be displayed again.
Is this possible in jQuery?