Tipped is software that allows you to create much fancier Tooltips.
To use Tipped, add the following to the HEAD of your Web page.
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="/js/tipped/tipped.js"></script>
<link rel="stylesheet" type="text/css" href="/css/tipped/tipped.css"/>
Then use the following code so that your tooltips are fancy.
<span class="first-tooltip" title="Hello World">The human says</span>
<span class="first-tooltip" title="Hello Lifeform">The Earth responds</span>
<script type="text/javascript">
$(document).ready(function() {
Tipped.create('.first-tooltip');
});
</script>
http://www.tippedjs.com/documentation