I see, you are changing the array of preloaded images for an array of what appear to be non-preloaded images. One of the features of UFade is that you can have multiple slide shows on a page. What I would do is to have one for each show I wanted, for example with three shows (set up the separate arrays in the main script as instructed on the demo page):
Code:
<td style="width: 346px; height: 116px; text-align: center;" colspan="1" rowspan="3">
<div id="show1">
<script type="text/javascript">
new fadeshow(fadeimages, 340, 350, 0, 3000)
</script>
</div>
<div id="show2" style="display:none;">
<script type="text/javascript">
new fadeshow(fadeimages2, 340, 350, 0, 3000)
</script>
</div>
<div id="show3" style="display:none;">
<script type="text/javascript">
new fadeshow(fadeimages3, 340, 350, 0, 3000)
</script>
</div>
</td>
Then, say you wanted to switch to show2 from either 3 or 1:
Code:
<img style="width: 65px; height: 110px;" alt=""
onclick="document.getElementById('show1').style.display=
document.getElementById('show3').style.display='none';
document.getElementById('show2').style.display='block';" src="104-03_65x110.jpg">
Bookmarks