Adding captions to inline images

Adding captions to inline images

I have a series of images that are displayed inline and I would like to add captions underneath each of them using Jquery, if that can be done.  Possibly the whole display should be in Jquery?

Currently I am using the Cycle Plugin to rotate a series of images which is working just fine.  Underneath I want to have thumbnails so the user can click on any of them and be taken to a page that will display a series of images.

demo can be viewed and here are the thumbnails:

  1.   <div id="subjects-wrapper">
  2.     <div id="subjects">
  3.         <img src="images/thumb/thumb_8093.jpg" alt="Miller Ranch"/>
  4.         <img src="images/thumb/thumb_8105.jpg" alt="Birds of Prey"/>
  5.         <img src="images/thumb/thumb_8115.jpg" alt="Otter"/>
  6.     </div>
  7.     <p class="subject-caption"></p>
  8.   </div>
With appreciation...

Todd