window.addEvent('domready', function(){

	//store titles and text
	$$('a.tipo').each(function(element,index) {
		var content = element.get('title').split('::');
		element.store('tip:title', content[0]);
		element.store('tip:text', content[1]);
	});
	
	//create the tooltips
	var myTips = new Tips('.tipo',{
		className: 'tipandtips',
		fixed: false,
		hideDelay: 400,
		showDelay: 400
	});
	
	myTips.addEvents({
		'show': function(tip) {
			tip.fade('0.9');
		},
		'hide': function(tip) {
			tip.fade('out');
		}
	});

}); 






