
var x=0;
var mout=273;
var t;
var dx=0;

function DoMenu(){
  if(x>0){
     dx=-10;
   } else {
     dx=10;
   }
  t=setInterval("mMove()",10);
  setMpos();
}

function setMpos(){
  mp=document.getElementById('menupage');
  mt=document.getElementById('menutab');
  mp.style.width=x;
  mt.style.left=x;
}

function mMove(){
  setMpos();
  x=x+dx;
  if(x<0){
    x=0;
    setMpos();
    clearInterval(t);
  }
  if(x>mout){
    x=mout;
    setMpos();
    clearInterval(t);
  }
}

