I think that you are missing something. The script doesn't automatically make images to hover over. Those are thumbnail images - smaller versions of the larger images that will display onmouseover. Say that in your dynimages array you have this:
Code:
dynimages[0]=["image_1.jpg", ""]
There are several ways to activate the display of this image in the target area. One of the ways to do that with a thumbnail is:
Code:
<img src="image_1_thumbnail.jpg" onmouseover="modifyimage('dynloadarea', 0)" style="cursor:pointer;">
But, you must have both the larger image_1.jpg and the smaller image_1_thumbnail.jpg available to the page.
Bookmarks