Using titles for each slide in CYCLE plugin

Using titles for each slide in CYCLE plugin

Hello. 

This is the code i'm using : 

  1. function ajaxpage(url, containerid) {
  2.     var $container= $('#' + containerid);
  3.     $container.hide().load(url, function() {
  4.             $container.fadeIn();
  5.         $('.slideshow').cycle({
  6.             fx: 'fade',
  7.             speed: 'slow',
  8.             timeout: 0,
  9.             next: '#next2',
  10.             prev: '#prev2'
  11.         });        
  12.     });
  13. }

This is my slideshow : 

<div class="slideshow">
<img src="ss_2011_web/triy_v11_001.jpg" width="511" height="768" alt="Look 001">
        <img src="ss_2011_web/triy_v11_004.jpg" width="511" height="768" alt="Look 002">
        <img src="ss_2011_web/triy_v11_006.jpg" width="511" height="768" alt="Look 003"></div>



I would like titles to be featured for each slide (the ALT tag if possible)
Just like here : 


(Callbacks paragraph)

Anyone with some specific ideas...? I'm getting lost in the codes!

Thanks for your time.
Until soon.