/**
 ** NOTE: if this does not work (well), check http://www.nickstakenburg.com/projects/prototip2/
 **/
 
function loadTooltips() {
	// Notice the use of the each() method to acquire access to each elements attributes
	$('.tooltip').each(function () {
		$(this).simpletip({
			content: $(this).attr('tooltip'),
			focus: true,
			baseClass: 'simpletip'
		});
	});
};