in this part of the script you would want to set persist to false
Code:
<script type="text/javascript">
stepcarousel.setup({
galleryid: 'myGallery', //id of carousel DIV
beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
panelclass: 'panel', //class of panel DIVs each holding content
autostep: { enable: false, moveby: 1, pause: 6000 },
panelbehavior: { speed: 250, wraparound: true, persist: false },
defaultbuttons: { enable: true, moveby: 1, leftnav: ['/images/btn_left.png', -27, 315], rightnav: ['/images/btn_right.png', -17, 315] },
statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})
</script>
I think that should fix it
Bookmarks