You may use floats or a table. Looking at your markup, a table would be easiest. The thing is, the slideshow is a division with two nested divisions inside it, all created by the script. A division will cause a line break, unless it is contained in a floated division or in a table cell, ex:
Code:
<div align="rotate"><table>
<tr>
<td><img src="images/images/images/header_02.gif" width="384" height="213" /><img src="images/images/images/video_03.jpg" width="249" height="212" /></td>
<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, 407, 213, 0, 3000, 1, "R")</script></td>
</tr>
</table>
</div>
BTW, I don't believe there is an attribute "rotate", and your markup is fairly non-standard, but seems to work. Also, you are missing MM_preloadImages and its accompanying functions for your image swaps. This results in javascript errors for the page.
Bookmarks