/* Hover-Skript für Thilo Dienst */

  function HoverInit()
  {
    if (onLoadOld)

    onLoadOld();
    tmpLayer = new Layer(1);

   //tmpLayer.bgColor = document.bgColor;
  }

 ////////////////////////

  function Hover(evt)
  {
   document.routeEvent(evt);

   if (tmpLayer && tmpLayer.visibility == 'hide' && evt.target.text) 
	 {
     obj = evt.target;
     tmpLayer.left = obj.x;
     tmpLayer.top  = obj.y;
     tmpLayer.width = 1;

     with (tmpLayer.document) 
	  {
      open();
      write('<nobr><a href="'+obj.href+'" style="font-family:Arial,Helvetica;	font-size:10pt; font-weight:bold; text-decoration:none; color:#ffffff;">'+obj.text+'</a>');
      close();
     }

     tmpLayer.visibility = 'show';

     document.captureEvents(Event.MOUSEMOVE);
     document.onmousemove = Hoveroff;

    }
  }

 ////////////////////////

  function Hoveroff(evt)
  {
   if (tmpLayer && evt.target != tmpLayer.document.links[0] && evt.target != obj)
	 {
     tmpLayer.visibility = 'hide';
     document.releaseEvents(Event.MOUSEMOVE);
    }
  }

