[jQuery] jQuery Cycle question

[jQuery] jQuery Cycle question

<html>
<body>
Hello folks,
I'm having a problem with the captions associated with a series of
slideshows generated by the Cycle plugin.
I use the plugin to display the images and captions of indvidual
slideshows that are injected into a page via the function
getNextPage().
In its simplest form my problem is this.  Suppose I have two
slideshows, A and B.  Slideshow A runs properly.  However, when
I replace slideshow A with slideshow B through an ajax call, the captions
associated with slideshow A are also shown along with those of slideshow
B.  The images associated with each slideshow are not being
confounded, just the captions that are fed into the ssoutput div. 
How do I "flush" that div of the captions of the previous
slideshow?
Thanks,
Bruce
<tt>function getNextPage(ej) { 
   
$.get("scripts/ajax_ramosus_client_second.asp?brm="+ej
+"&q="  + new Date().getTime(),
function(responseText){
       
$("#wrapper").html(responseText);
        $('#s1').cycle({fx:'fade',
timeout: 4000, after: onAfter,pause: 1,next: '#s1',delay: -2000});
        });  
}
function onAfter() {
    $('#ssoutput').html(this.title);
}
</body>
</html>