jquery slideshow with text across fading in and out

jquery slideshow with text across fading in and out

Hi
I am working on a three image  slideshow. As they say a picture is worth a thousand words. But it would
be even nicer If I could also have text fading in and out across the image slider. 

<head>

<script type="text/javascript"  src="../js/jquery-1.7.2.min.js"></script>
<script type="text/javascript"  src="../js/jquery.cycle.js"></script>

<script type="text/javascript"

$(document).ready(function(){
      S("#slideshow").cycle()
});

</script>

<style>

#slideshow{
     width: 800px; 
     height: 200px;
}

</style
</head>

<body>
<div id="slideshow">
<img src="../images/mountain.jpg alt="img1" />
<img src="../images/mountain.jpg alt="img1" />
<img src="../images/mountain.jpg alt="img1" />

</div>
</body>
</html>