Don't use mso to write your pages if at all possible. The problem you are having is that you have two slide show calls but, only one slide show. Get rid of this:
Code:
new fadeshow(fadeimages2, 192, 144, 0, 3000, 0)
To get the remaining slideshow call to behave differently in the layout you can put it in a cell in a table or even in a division with a fixed width that is floated to the left. Table example:
HTML Code:
<table>
<tr>
<td><script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 192, 144, 0, 3000, 1, "R")
</script></td>
<td>Some Text</td>
</tr>
</table>
Bookmarks