var Ver4=parseInt(navigator.appVersion.charAt(0))>=4
var IE=navigator.appName.indexOf("Microsoft")!=-1
// Startposition
var al, imagesrc, ex=700, ey=200, x0=100, y0=700
  
 function BewegeAlien()
{ // Neue Position des Alien berechnen
   if (Math.abs(ex-x0)>=10) { x0+=Math.floor((ex-x0)*0.1) }
   else if (ex!=x0) { x0+=Math.abs(ex-x0)/(ex-x0) }
   if (Math.abs(ey-y0)>=10) { y0+=Math.floor((ey-y0)*0.1) }
   else if (ey!=y0) { y0+=Math.abs(ey-y0)/(ey-y0) }

 { imagesrc="werkzeuge.gif" }

  // Grafik und Position setzen
  if (Ver4)
  { if (!IE)
    { document.AlienLayer.document.images.alien.src=imagesrc }
    else document.all.AlienLayer.document.images.alien.src=imagesrc
  }
// Position zum Cursor
  al.left=x0+70
  al.top=y0-120

  setTimeout("BewegeAlien();",100)
}

function MeinMausEvent(e)
{ // Position des Maus-Cursors ermitteln
  if (Ver4)
  { if (!IE)
    { ex=e.pageX
      ey=e.pageY }
    else
    { ex=event.clientX + document.body.scrollLeft
      ey=event.clientY + document.body.scrollTop }
  }
}

function ScriptSetup()
{ // Alle Alien-Grafiken laden
  isIm = (document.images) ? 1 : 0
  if (isIm)
  { arImLoad = new Array
    ('tq')
    arImList = new Array ()
    for (counter in arImLoad)
    { arImList[counter] = new Image()
      arImList[counter].src = arImLoad[counter] + '.gif'
    }
  }

  // Globale Variablen setzen und Maus-Event initialisieren
  if (Ver4)
  { if (!IE)
    { al=document.AlienLayer
      document.captureEvents(Event.MOUSEMOVE)
    }
    else
    { al=document.all.AlienLayer.style }
    document.onmousemove = MeinMausEvent
    BewegeAlien()
  }
}

function ZeigeAlien()
{ // Setzen der Block-Level Container zur Anzeige der Grafiken
  if(Ver4)
  { s ='<DIV STYLE="visibility:hidden"></DIV>'
    s+='<DIV ID="AlienLayer" STYLE="position:absolute; '
    s+='top:-200; left:-100; width:100; height:60">'
    s+='<IMG NAME="alien" SRC="werkzeuge.gif" border=0>'
    s+='</A></DIV>'
    document.writeln(s)
  }
}

window.onload = ScriptSetup
ZeigeAlien()
