Something, probably a conflict with another script, is preventing the viewer from initializing or from initializing properly. I can paste the initialization command into the address bar and hit enter, like so:
Code:
javascript:void(thumbnailviewer2.init())
and that makes it work. So, adding this to the end of your page just before the </body> tag (it might work better in the head of the page, I like doing it at the end though) should do about the same thing:
Code:
<!--[if IE]>
<script type="text/javascript">
if ( typeof window.attachEvent != "undefined")
window.attanchEvent('onload' thumbnailviewer2.init);
</script>
<![endif]-->
However, this might be better (but only at the end of the page):
Code:
<!--[if IE]>
<script type="text/javascript">
thumbnailviewer2.init();
</script>
<![endif]-->
Try them out.
Bookmarks