Spry

Create a tool tip for a menu item

 To create a tooltip for a menu item, add a title attribute to the a tag of the relevant menu item. For example:
<ul id="menubar1" class="MenuBarHorizontal">
	<li><a href="#">Item 1</a></li>
	<li><a href="#">Item 2</a></li>
	<li><a href="#">Item 3</a></li>
	<li><a href="contacts.html" title="Contacts">Item 4</a></li>
</ul>