<!--
ie = ((document.all) && (window.offscreenBuffering)) ? true : false;
nn = ((document.captureEvents) && (!document.getElementById)) ? true : false;
mz = ((document.getElementById) && (!document.all) && (document.documentElement)) ? true : false; 
op = ((document.getElementById) && (navigator.userAgent.indexOf('Opera') != -1)) ? true : false

if (ie || nn){

var topOffset = 1                                                                    

        function smoothMove() {
        var Dif = parseInt((document.body.scrollTop+topOffset-document.all.navBar.offsetTop)*.1) 
        if (isNaN(Dif)) Dif=0                                                        <!-- umschifft einen Netscape-Bug -->
        document.all.navBar.style.pixelTop+=Dif
        }

        function doLoad() {
        setup()                                                                               <!-- initialisiert die DHTML-Bibliothek -->
        window.setInterval("smoothMove()",20)
        }
        window.onload = doLoad;
}

if (op)
        {}
//-->

