You really should put your images on a diet by optimizing them. And, consider using less of them in each array. This will speed the loading of the page. If you set the duration=3, ex:
Code:
style="filter:blendTrans(duration=3)"
for each image tag's style, you will get a nice blending effect in IE (after you fix the next thing).
But, the real problem is that you are running the script four times and each of these times is before the browser has parsed at least one of image elements to which it refers during the blend initialization phase in IE. FF doesn't initialize for blend so, that explains why it has no error. All you really need to do is get rid of all of these:
HTML Code:
<script type="text/javascript" src="js/imageblend.js"></script>
except one and put that one after the last image element:
HTML Code:
<a href="javascript:gotoshow(slideimages4[whichlink4])"><img src="img/locations/127.jpg" alt="" name="slide4" border=0 style="filter:blendTrans(duration=0)" width=175 height=130></a><script type="text/javascript" src="js/imageblend.js"></script>
Bookmarks