Your page is in violation of Dynamic Drive's
usage terms, which, among other things, state that the script credit must appear in the source code of the
page(s) using the script. Please reinstate the notice first.
There are two problems I see here:
Code:
<br clear="all" />
<div>
<script>
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 600, 225, 0, 3000, 1, "R")
new fadeshow(fadeimages2, 140, 225, 0, 3000, 0)
</script>
</div>
The first is meaningless. The second is referring to an array of images that doesn't exist, try it like this:
Code:
<br style="clear:both" />
<div>
<script>
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 600, 225, 0, 3000, 1, "R")
</script>
</div>
In the first case, I am assuming the clear:both; style property/value pair is what you are intending. If I am right about that, lack of clearing previous floats could be part of the problem. In the second case, since you are only using one show, and only have one configured in your external script, keeping that code there will only cause an error at best, and might be the problem or a part of the problem in IE.
There could be other problems.
Bookmarks