Example one:

JavaScript code:
	$('a[@title]').leviTip();
	
HTML markup:
	<a href="http://www.yahoo.com" title="Yahoo!">Link to Yahoo!</a><br />
	<a href="http://www.ask.com">No title...no tooltip!</a><br />
	<a href="http://www.jquery.com" title="A link to the "Write Less, Do More, JavaScript Library"">jQuery!</a>
	
Result:
Link to Yahoo!
No title...no tooltip!
jQuery!

Example two:

JavaScript code:
	$('#church').leviTip({sourceType: 'element', source: '#churchtip', addClass: '', closeDelay: 500});
	
HTML markup:
	<img id="church" src="church.jpg" border="1" />
	<div id="churchtip"><div class="header">The header!</div>..and a little description..</div>
	
Result:

The header!
..and a little description..

Example three:

JavaScript code:
	$('#anotherchurch').leviTip({sourceType: 'element', source: '#anotherchurchtip', addClass: 'anotherchurchtip', hideSourceElement: true});
	
HTML markup:
	<img id="anotherchurch" src="church.jpg" border="1" />
	<div id="anotherchurchtip"><div class="header">The header!</div>..and a little description..</div>
	
Result:
The header!
..and a little description..

Example four:

JavaScript code:
	$('#hellodiv').leviTip({sourceType: 'attribute', source: 'myownattr', dropShadow: false, onOpen:function(l, target){
		$(target).addClass('hover');
	}, onClose: function(l, target){
		$(target).removeClass('hover');
	}});
	
HTML markup:
	<div id="hellodiv" myownattr="just a hello div with some text" >hello</div>
	
Result:
hello

Example five:

JavaScript code:
	$('#clicktip').leviTip({activateOn: 'click', sourceType: 'firstchild', hideSourceElement: true});
	
HTML markup:
	<span id="clicktip"><span>clickable tooltip</span>Click me</span> to show the tooltip!
	
Result:
clickable tooltipClick me to show the tooltip!