Move your tooltip(s) HTML to the bottom of the page, directly above the </body> tag. So in your case:
Code:
<div id="userballoon" class="balloonstyle" style="width: 250px; top: 163px; left: 0pt; visibility: hidden;">
<img src="test_files/fav_icon.png" border="0" height="28" width="25">
Click this link to add this photographer to your favorites. This
feature uses cookies to remember your selections throughout the site.
You must have cookies enabled in order for this feature to work.
</div>
</body>
The containership in which your tooltip HTML is currently added to is confusing the script's positioning of it. As a general tip, it's best to always have your tooltip HTML added as a direct child of the <BODY> tag.
Bookmarks