How To use the JavaScript tooltip API

Step 1: Load the js file in your page's header.
	

*	/* CODE */
	<html>
	
		<head>
			<script type="text/javascript" src="tooltip.1.0.2.js"></script>
		</head>
		
		<body>
			Page Body
		</body>
	</html>
*	/* END CODE */

Step 2: Make an onmouseover and onmouseout call to the javascript tooltip functions.

*	/* CODE */
			<a href="somelink.html" onmouseover="tt_in('This is the tooltip text');" onmouseout="tt_out();">This link has a tooltip!</a>

*	/* END CODE */