There are myriad ways to lay out a page. The slide shows are just elements. What should be useful is that you don't need to call them both from the same script block. For example (from the demo page):
Code:
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script>
The green part is just a comment/instructions. The red part is one call for a slide show, the highlighted part is another call for a different slide show.
To make them separate (just an example):
Code:
Things May Be Put Here If You Want
<div>
<script type="text/javascript">
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
</script>
</div>
Other Stuff Can Go Here If You Like
<div style="padding-left:50px;">
<script type="text/javascript">
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script>
</div>
More Stuff Here If You Want
Bookmarks