The problem is that there's another version of jQuery later on the page that's interfering with the thumbnail script. Get rid of this or comment it out (it's currently used by .simpleSpy()):
Code:
<script src="js/jquery-1.js" type="text/javascript"></script>
But that will break .simpleSpy(), So after the thumbnail script add the highlighted as shown:
Code:
<script type="text/javascript" src="/js/jquery.min.js"></script>
<script type="text/javascript" src="/js/thumbnailviewer2.js">
/***********************************************
* Image Thumbnail Viewer II script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
</script>
<script type="text/javascript">
var $ = jQuery;
</script>
<div id="loadarea"></div>
And .simpleSpy() will be able to use the earlier copy of jQuery.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks