<!--
/* ### creates a:hover effect for nn4.x ### */
var ns = document.layers ? true : false;

// create new layer
function HoverInit()
{
  if (onLoadOld)
    onLoadOld();
  tmpLayer = new Layer(1);
  tmpLayer.bgColor = document.bgColor;
}

var obj = null;
var tmpLayer = null;
var onLoadOld = null;

if (ns) {
  if (window.onload)
    onLoadOld = window.onload;
  window.onLoad = HoverInit;
  document.captureEvents(Event.MOUSEOVER);
  document.onMouseOver = Hover;
}

//show a:hover
function Hover(evt)
{
  document.routeEvent(evt);
  if (tmpLayer && tmpLayer.visibility == 'hide' && evt.target.text) {

    obj = evt.target;
	xtc = obj.text 
    tmpLayer.left = obj.x;
    tmpLayer.top  = obj.y;
    tmpLayer.width = xtc.length + 15;
    tmpLayer.height = obj.height;
  if (xtc=='Warum?' || xtc=='Campt mit uns!' || xtc=='Hintergrund'){
  with (tmpLayer.document) {
      open();
      write('<nobr><a href="'+obj.href+'" class="nn_hover2"' +
            (obj.target ? ' target="' + obj.target + '"' : '') +
            '>'+xtc+'<\/a><\/nobr>');
      close();
    }}else
    if(xtc=='zurück' || xtc=='A4-Faltblatt' || xtc=='Din-A 5 Flugblatt' || xtc=='download' || xtc=='home'){
    with (tmpLayer.document) {
      open();
      write('<nobr><a href="'+obj.href+'" class="nn_hover3"' +
            (obj.target ? ' target="' + obj.target + '"' : '') +
            '>'+obj.text+'<\/a><\/nobr>');
      close();
    }}else
    if(xtc=='programme' || xtc=='weiterlesen!' || xtc=='aktivgegenabschiebung@gmx.de' || xtc=='G7 Gipfel in Genua' || xtc=='back'){
    with (tmpLayer.document) {
      open();
      write('<nobr><a href="'+obj.href+'" class="nn_hover3"' +
            (obj.target ? ' target="' + obj.target + '"' : '') +
            '>'+obj.text+'<\/a><\/nobr>');
      close();
    }}else
    if(xtc=='dwhffm@t-online.de'){
    with (tmpLayer.document) {
      open();
      write('<nobr><a href="'+obj.href+'" class="nn_hover_mail"' +
            (obj.target ? ' target="' + obj.target + '"' : '') +
            '>'+obj.text+'<\/a><\/nobr>');
      close();
    }}else
    
    	with (tmpLayer.document) {
      open();
      write('<nobr><a href="'+obj.href+'" class="nn_hover"' +
            (obj.target ? ' target="' + obj.target + '"' : '') +
            '>'+obj.text+'<\/a><\/nobr>');
      close();
      }

    tmpLayer.visibility = 'show';

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

  }
}
// hide a:hover 
function Hoveroff(evt)
{
  if (tmpLayer && evt.target != tmpLayer.document.links[0] && evt.target !=
obj) {

    tmpLayer.visibility = 'hide';
    document.releaseEvents(Event.MOUSEMOVE);

  }
}

// end a:hover netscape
//-->