That should have fixed it, that's the difference between just looking at the code and experimenting to see what happens. As it turns out, there is another script linked to the page that redeclares the ie variable as only document.all. Best then to deal with it on just the lines affected:
Code:
<script language="JavaScript1.1">
<!--
var whichlink=0
var whichimage=0
var blenddelay=(ie&&!window.opera)? document.images.slide.filters[0].duration*1000 : 0
function slideit(){
if (!document.images) return
if (ie&&!window.opera) document.images.slide.filters[0].apply()
document.images.slide.src=imageholder[whichimage].src
if (ie&&!window.opera) document.images.slide.filters[0].play()
whichlink=whichimage
whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
setTimeout("slideit()",slidespeed+blenddelay)
}
slideit()
//-->
</script>
Bookmarks