Adding text to wrap around Jquery Cycle?

Hi,

Using the jquery cycle code to display fade images in exactly as the demo shows. So far, so good.

But, I want to add some ‘static’ text that doesn’t fade with the images and will ‘wrap’ around those images. So, I want the images on the left and some text on theiright which will wrap around the images.

Anyone know what I need to do to accomplish this?

Here’s the bog standard code I’m using.

Thanks for looking

Mark up

<div id="s1" class="pics">
    <img src="images/beach1.jpg" width="200" height="200" /> 
    <img src="images/beach2.jpg" width="200" height="200" /> 
    <img src="images/beach3.jpg" width="200" height="200" /> 
</div> 

CSS

.pics {  
    height:  232px;  
    width:   232px;  
    padding: 0;  
    margin:  0;  
} 
 
.pics img {  
    padding: 15px;  
    border:  1px solid #ccc;  
    background-color: #eee;  
    width:  200px; 
    height: 200px; 
    top:  0; 
    left: 0 
}

Jquery

$('#s1').cycle('fade');

I would probably float the .pics div left and wrap another div around it, in which I would put the text.