Try the below modified .js file, which should load the slideshow only when all the images have preloaded. It does utilize features found in jQuery 1.5x, so instead of the default:
Code:
<script type="text/javascript" src="jquery-1.2.6.pack.js"></script>
reference in the HEAD section of your page, you'll need to replace that with:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
If the modified code works, then we can go on to the next step of adding some sort of preload indicator.
Bookmarks