First, edit startit() function in Fade-in slideshow script:
Code:
function startit(){
if (ie4||dom){
var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.innerHTML='<img src="'+fadeimages[curimageindex]+'">'
rotateimage()
}
else
setInterval("rotateimage()",pause)
}
Second, delete or comment
Code:
if (ie4||dom)
window.onload=startit
else
setInterval("rotateimage()",pause)
in Fade-in slideshow script and
Code:
window.onload=changecontent
in Fading Scroller script
Third, add this
Code:
<body onLoad="startit(),changecontent()">
In the body tag.
I hope that'll work.
Bookmarks