Try giving the anchor image explicit width and height attributes, ie:
Code:
<a href="Tools.aspx" class="menuanchorclass" rel="anylinkmenu1" data-image="img/tools.jpg" data-overimage="img/tools.jpg"><img src="img/tools.jpg" style="border-width: 0; width:97px;height:42px" /></a>
If that doesn't help, try also moving the "rel" attribute into the IMG tag itself:
Code:
<a href="Tools.aspx" class="menuanchorclass" data-image="img/tools.jpg" data-overimage="img/tools.jpg"><img src="img/tools.jpg" rel="anylinkmenu1" style="border-width: 0; width:97px;height:42px" /></a>
Bookmarks