<!--
var topOffset = 181

function smoothMove() {
  var Dif =
    parseInt((document.body.scrollTop+topOffset-document.all.navBar.offsetTop)*.1)
  // Work-around wierd Netscape NaN bug when Dif is 0
  if (isNaN(Dif)) Dif=0
  document.all.navBar.style.pixelTop+=Dif
}

function doLoad() {
  setup()
  window.setInterval("smoothMove()",20)
}
window.onload = doLoad;
// -->