<!--
function scr(ypos) {
  el = document.getElementById('manu').style;
  el.top = ypos + 'px';
  if (ypos < -277)
    window.setTimeout("scr(0)", 30);
  else
    window.setTimeout("scr("+(ypos-1)+")", 30);
}

function start() {
  document.getElementById('manu').style.top = 0;
  window.setTimeout("scr(0)", 2000);
}
-->
