So what's the problem? In the link you posted in the first post there is the code to place it on your links:
Code:
<a href="#" onmouseover="doTooltip(event,0)" onmouseout="hideTip()">Link 1</a><br>
<a href="#" onmouseover="doTooltip(event,1)" onmouseout="hideTip()">Link 2</a>
To do it to pictures instead of text links you just do:
Code:
<a href="#" onmouseover="doTooltip(event,0)" onmouseout="hideTip()"><img src="/path/to/image.jpg" alt="Image1"></a><br>
<a href="#" onmouseover="doTooltip(event,1)" onmouseout="hideTip()"><img src="/path/to/image2.jpg" alt="Image2"></a>
Bookmarks