// JavaScript Document
 function rotate()
  {
  if (r=="rotate")
   { 
   nr++; if (nr==9) nr=1;
   Zentr(nr);
   s=1; 
   window.setTimeout('rotate()',5000);
   }
  else s=0; 
  }
  function stoprotate()
  {
   r="norotate"; 
   if (s==1) window.setTimeout('stoprotate()',100);
  }
  function startrotate()
  {
   if (s==1) return;
   if (r!="rotate") {r="rotate";rotate()}
  }
  function stopashow(nr)
  {
  stoprotate();Zentr(nr);
  }
  
  function Zentr(nr)
  {
  switch (nr)
  {
  case 1:
    txt="<p Class='klein'><BR><BR>Basis jedes Gesch&auml;fts</p>";
  break;
  case 2:
    txt="<p Class='klein'><BR>Absch&auml;tzung<BR>Kosten und<BR>Nutzen</p>";
  break;
  case 3:
    txt="<p Class='klein'>St&auml;rken und Schw&auml;chen<br>Fehleinschätzungen<br>Ausf&uuml;hrbarkeit</p>";
  break;
  case 4:
    txt="<p Class='klein'>Detailierter<br>Termin und<br>Kostenplan,<br>Pflichtenheft</p>";
  break;
  case 5:
    txt="<p Class='klein'> Hard- und Software mit Preis/Leistungs Recherche</p>";
  break;
  case 6:
    txt="<p Class='klein'>Installation<BR>Konfiguration<BR>Programmierung<BR>Datenerfassung</p>";
  break;
  case 7:
    txt="<p Class='klein'>Systematische Fehlersuche<BR> Anpassungen<BR> Probebetrieb</p>";
  break;
  case 8:
    txt="<p Class='klein'><BR>Einzelunterricht<BR>Gruppenunterricht<BR>Workshops</p>";
  break;
  }
  document.getElementById("Zentrum").innerHTML=txt;
  for (i=1; i<=8; i++)
   {
   id="N"+i;
    if (i!=nr) window.document.images[id].src="../images/Spacer.gif";
    else window.document.images[id].src="../images/unterstr.gif";
   }
  }
