Like my reply to your post about Ultimate Fade In slide show, look into image optimization to speed the loading of the page. Consider removing some of the images. 10 is a lot of images for any given page. Even with only 10 images, you would still have a problem like you describe though. Lightbox will not work until it initializes. Usually this is done onload of the page. I have not tested this but, you might be able to get it to initialize for each thumbnail like so:
HTML Code:
<a href="large.jpg" rel="lightbox"><img src="small.jpg" onload="initLightbox();"></a>
Another way of doing this that might work better and that can be used with text triggers as well as for thumbnail image triggers is:
HTML Code:
<a href="large.jpg" rel="lightbox"><img src="small.jpg"></a>
<script type="text/javascript">initLightbox();</script>
Whichever method you use, it would need to be done for each trigger.
To speed loading of the page in general - avoid nested tables and, make sure that all of the images used as thumbnail triggers (if any) are true thumbnails and are optimized.
Don't use the larger images themselves, as some folks do, relying upon the browser to visually scale them down to the dimensions of thumbnails. When they do that, it can take a long time to load each trigger.
Bookmarks