Hmm this is a strange one. The script by design will start the slideshow when the first image has fully loaded. From the look of your page, it seems IE doesn't always signal when that happens, despite the fact that the script contains code that should have accounted for that bug. What happens if inside the .js file, you replace the following:
Code:
if ($curimage.get(0).complete){ //accounf for IE not firing image.onload
$loadingimg.hide()
slideshow.paginateinit($)
slideshow.showslide(setting.curimage)
}
else{ //initialize slideshow when first image has fully loaded
$loadingimg.hide()
slideshow.paginateinit($)
$curimage.bind('load', function(){slideshow.showslide(setting.curimage)})
}
with just:
Code:
$loadingimg.hide()
slideshow.paginateinit($)
slideshow.showslide(setting.curimage)
Bookmarks