// JavaScript Document

Prototype.Browser.IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;

function showTip(obj, hack) 
{
  if(!obj.tipped) { 
    if(hack==null) { hack.IE6 = 0; hack.IE = 0; }
    var ele = obj.lastChild;  
    ele.style.top = -($(ele).getHeight()) + 'px';
    if(Prototype.Browser.IE6)
    {
      //ele.style.top = -($(ele).getHeight() + 3 + hack) + 'px';
      ele.style.top = -($(ele).getHeight() + hack.IE6) + 'px';
    } 
    else if(Prototype.Browser.IE) { ele.style.top = -($(ele).getHeight()) + hack.IE7 + 'px'; }
    ele.style.left = $(obj).getWidth() + 'px';
    obj.tipped = true;
  }
}

Event.observe(window, 'load', function() {

  $$('.glossary-info').each(function(n) {
    
    this.tipped = false;
    n.tipped = false;   
    n.onclick = function() { return false; }
    
  });

});