/**
 * Requires Prototype and Control.Modal
 */

Event.observe(window, 'load', function() {
	$$('.tooltip').each(function(element) {
		new Control.Modal(element, {
			position: 'mouse',
			offsetTop: 20,
			contents: element.title
		});
		element.title = '';
	});
});
