Change:
Code:
<a href="#" onMouseover="modifyimage('dynloadarea', 0)">image 1 (onmouseover)</a><br>
<a href="#" onMouseover="modifyimage('dynloadarea', 1)">image 2 (onmouseover)</a><br>
to:
Code:
<a href="#" onMouseover="modifyimage('dynloadarea', 0)" onclick="return false;"><img src="thumb1.jpg" border="0"></a><br>
<a href="#" onMouseover="modifyimage('dynloadarea', 1)" onclick="return false;"><img src="thumb2.jpg" border="0"></a><br>
The green onclick events are simply to prevent page reload if the thumbnails are clicked. It is the red image tags that answer your question, set their src attributes to your image files' names and (if not in the same folder as the page) paths.
Note: Those are ordinary HTML image tags.
Bookmarks