window.addEvent('domready', function() {
	
	$$('.tooltip').each(function(el) {
		el.store('tip:text', el.title);
		el.store('tip:title', '');
	});
	
	new Tips('.tooltip', {
		className: 'custom_tip',
		fixed: true,
		offset: {
			x: 0,
			y: 50
		}
	});
});
