<!--
var Breite_navibar = 720;

	if (window && window.innerWidth) {
        fensterbreite = window.innerWidth;
    // Internet-Explorer-Methode
    } else {
        // auf Standardbreite 800px setzen, wird schon passen ;-)
        fensterbreite = 800;
    }
window.document.writeln("<style type='text/css'>");

window.document.writeln("#fixiert {");
window.document.writeln("    position: absolute;");
window.document.writeln("    top: 10px; left: "+ ((fensterbreite/2)-(Breite_navibar/2)) +"px;");
window.document.writeln("    width: "+ Breite_navibar +"px;");
//window.document.writeln("    background-image: url('bg.gif');");
window.document.writeln("    border: 1px solid #dfdfdf;");
window.document.writeln("  }");

window.document.writeln("  html>body #fixiert {  /* nur fuer moderne Browser! */");
window.document.writeln("    position: fixed;");
window.document.writeln("  }");

window.document.writeln(" #Inhalt {");
window.document.writeln("    position: absolute;padding: 0;");
window.document.writeln("    top: 130px; left: "+ ((fensterbreite/2)-(Breite_navibar/2)) +"px;");
window.document.writeln("    width: "+ Breite_navibar +"px;");
window.document.writeln("  }");

window.document.writeln(" #Inhalt img {");
window.document.writeln("    margin: 0;");
window.document.writeln("  }");

window.document.writeln(" * #Inhalt {  /* versteckt vor Netscape 4 */");
window.document.writeln("    background-color: #ffffff;");
window.document.writeln("  }");

window.document.writeln("</style>");

function fenster_schieben() {
	 if (document && document.body && document.body.offsetWidth) {
        fensterbreite = document.body.offsetWidth;
    	document.getElementById('fixiert').style.left=((fensterbreite/2)-(Breite_navibar/2))+"px";
		document.getElementById('Inhalt').style.left=((fensterbreite/2)-(Breite_navibar/2))+"px";
    } 
}

// -->

