window.addEvent('domready', function() {

            $$('a.toolTip').each(function(toolTipEl,index) {
                var content = toolTipEl.get('title').split('::');
                toolTipEl.store('tip:title', content[0]);
                toolTipEl.store('tip:text', content[1]);            
            });
            var toolTip = new Tips('.toolTip',{
                className: 'toolTip',
                fixed: false,                    // fixe Position oder bewegt sich der tooltip mit der maus mit
//                offsets: {'x': 30, 'y': -50},      // abstand des Tooltip von der maus
                hideDelay: 50,
                showDelay: 50
            });
            
            toolTip.addEvents({
                'show': function(tip) {
                    tip.style.display = 'block';
                    tip.style.opacity = '0.9';
                },
                'hide': function(tip) {
            //        tip.fade('out');
                }
            });
                        
        });  
