window.addEvent('domready', function(){ var customTips = $$('.tooltip'); customTips.setStyle('cursor', 'help'); var toolTips = new Tips(customTips, { onShow: function(toolTipElement){ toolTipElement.fade(.95); $('show').highlight('#FFF504'); }, onHide: function(toolTipElement){ toolTipElement.fade(0); $('hide').highlight('#FFF504'); } }); });