//Layer mit Hauptnavigation auf der Schiller-Seite;
//;
document.write('<div id="box1" style="top:10px; right:30px;"><span style="font-weight: bold; font-family: helvetica,arial,sans-serif; font-size:12pt; z-index:90; ">');
document.write('<a target="_parent" href="http://www.ludwigsgymnasium.de/">Ludwigsgymnasium</a>');
document.write('<br><a target="_parent" href="Schiller_Hauptseite.html">zur&uuml;ck</a> - ');
document.write('<a target="_parent" href="Schiller_Impressum.html">');
document.write('Impressum</a></span></div>');

//Automatisches Hereinscrollen der Navigation, wenn das Fenster gescrollt wird:
ScrollStart();

function NachOben() {
 var y=0;
 if (window.pageYOffset) y = window.pageYOffset;
 else if (document.body && document.body.scrollTop) y=document.body.scrollTop;
 var x = parseInt(document.getElementById('box1').style.top);
 //alert(x);
 if(x > (y+10)) {
  if (x > (y+200)) x-=100;
  if (x > (y+30)) x-=10;
  x -= 1;
 }
 if(x <= y+10) {
  if (x < (y-200)) x+=100;
  if (x < (y-20)) x+=10; 
  x += 1;
 }
 document.getElementById('box1').style.top = x+"px";
}

function ScrollStart() {
 setInterval('NachOben()',100);
}
