
if (Prototype && Control) {

	document.observe('dom:loaded', function(){
		$$('.cycon-glossar-markierung').each(function(eSpan){
			var aElemente = eSpan.readAttribute('title').split(' :: ');
			if (aElemente.length > 0) {
				var sText = '<h1>'.concat(aElemente[0], '</h1><div class="beschreibung">', aElemente[1], '</div>');
				
				eSpan.writeAttribute('title', '');
				
				new Control.ToolTip(eSpan, sText, { 'className': 'glossar-tip' });
				}
			});
		});
	}
