Works in Opera (which now, unlike any other browser that I know of, allows both body onload and window onload), not in FF, probably not in IE. You have an onload conflict. I'd try, where you have this:
Code:
<body onLoad="MM_preloadImages('../imag . . .
adding (red):
Code:
<body onLoad="initLightbox();MM_preloadImages('../imag . . .
This could mess things up in recent Opera browsers though, by initializing lightbox twice. Just to be on the safe side, I would recommend also removing this:
Code:
addLoadEvent(initLightbox); // run initLightbox onLoad
from your lightbox.js file.
Bookmarks