jQuery.cycle is your answer.
<script type="text/javascript">
$(document).ready(function() {
$('.image_holder').cycle({
fx: 'fade'
});
});
</script>
You must remove the identifier "image", and the image elements must be contained inside your "image_holder", which contain links to the images you want to perform (transition). Your html will look something like this:
<div id="image_holder_1" class="image_holder">
<img src="images/esu.gif"/>
</div>
, css, css jQuery. , jQuery.cycle. jQuery.cycle
user799910