  //Begin Riesenrad
var r = 200;        // radius
var pi = Math.PI;   // pi
var a=-1;            // Startwinkel
var breite, hoehe;
var Bildbreite=700, Bildhoehe=500;


function abfrage ()
{
  if (navigator.appName=='Netscape' && navigator.appVersion.charAt(0)>='4')
     {
       breite=screen.width;
       hoehe=window.innerHeight;
       window.document.logo.left=breite/2-Bildbreite/2;
       window.document.logo.top=hoehe/2-Bildhoehe/2;
       window.setTimeout ('rotation_nc()', 20);
     }
  if (navigator.appName=='Microsoft Internet Explorer' && navigator.appVersion.charAt(0)>='4')
     {
       breite=screen.width;
       hoehe=screen.height;
       logo.style.left=breite/2-Bildbreite/2;
       logo.style.top=hoehe/2-Bildhoehe/2;
      window.setTimeout ('rotation_ie()', 200);
     }
}



function rotation_nc ()

{

  a++;
  window.document.neu.left=(r * Math.cos(a*(pi/180))) + breite/2-Bildbreite/2;
  window.document.neu.top=(r * Math.sin(a*(pi/180))) + hoehe/2-Bildhoehe/2;
  window.document.impressum.left=(r * Math.cos((a+120)*(pi/180))) + breite/2-Bildbreite/2;
  window.document.impressum.top=(r * Math.sin((a+120)*(pi/180))) + hoehe/2-Bildhoehe/2;
  window.document.feedback.left=(r * Math.cos((a+240)*(pi/180))) + breite/2-Bildbreite/2;
  window.document.feedback.top=(r * Math.sin((a+240)*(pi/180))) + hoehe/2-Bildhoehe/2;
  window.setTimeout ('rotation_nc()', 225);

}

function rotation_ie ()

{

  a++;

  A.style.left=(r * Math.cos((a+60)*(pi/180))) + breite/2-Bildbreite/2;
  A.style.top=(r * Math.sin((a+60)*(pi/180))) + hoehe/2-Bildhoehe/2;
  B.style.left=(r * Math.cos((a+120)*(pi/180))) + breite/2-Bildbreite/2;
  B.style.top=(r * Math.sin((a+120)*(pi/180))) + hoehe/2-Bildhoehe/2;
  C.style.left=(r * Math.cos((a+180)*(pi/180))) + breite/2-Bildbreite/2;
  C.style.top=(r * Math.sin((a+180)*(pi/180))) + hoehe/2-Bildhoehe/2;
  D.style.left=(r * Math.cos((a+240)*(pi/180))) + breite/2-Bildbreite/2;
  D.style.top=(r * Math.sin((a+240)*(pi/180))) + hoehe/2-Bildhoehe/2;
  E.style.left=(r * Math.cos((a+300)*(pi/180))) + breite/2-Bildbreite/2;
  E.style.top=(r * Math.sin((a+300)*(pi/180))) + hoehe/2-Bildhoehe/2;
  F.style.left=(r * Math.cos((a+360)*(pi/180))) + breite/2-Bildbreite/2;
  F.style.top=(r * Math.sin((a+360)*(pi/180))) + hoehe/2-Bildhoehe/2;


  window.setTimeout ('rotation_ie()', 150);

}
