Event.observe(window, 'load', function(){
	$$('a.glossary-tooltip').each(function(elem){
		elem.onclick=function(){return false;}
		new Tip(elem, {
			title : elem.readAttribute('title'),
// 			title : 'Glossaire',
// 			style: 'creamy',
			style: 'thalasso',
			ajax: {
				url: elem.readAttribute('href')+'&type=122',
				options: {
					onComplete: function(transport) {}
				}
			},
			hideOn: { element: 'closeButton', event: 'click' },
// 			width: 'auto', // We don't want the default 250px.
			hook: { target: 'bottomMiddle', tip: 'topRight' },
			stem: 'topRight',
			offset: { x: 6, y: 3 }
		});
		elem.removeAttribute('title');
	});
});