HTML:
<div id="CustomSlideshow">
<img src="img/image_0.jpg" alt="Camomile"/>
<img src="img/image_1.jpg" alt="Bumblebees"/>
<img src="img/image_2.jpg" alt="Wood Toothpicks"/>
</div>
<div id="CustomSlideshow2">
<img src="img/image_0.jpg" alt="Camomile"/>
<img src="img/image_1.jpg" alt="Bumblebees"/>
<img src="img/image_2.jpg" alt="Wood Toothpicks"/>
</div>
JavaScript:
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
$('#CustomSlideshow').slideshow({playhover:true,playframe:false});
$('#CustomSlideshow2').slideshow({playhoverr:true,playframe:false,play:true});
});
//]]>
</script>