
var maxsub=7;
var wtimer;

function window_onload() {
  //Hideall();
  //setmenu();
}

function Hideall(){
  for (a=1;a<=maxsub;a++){
    //test.innerHTML="bs"+a;
    sb=document.getElementById("mb"+a);
    sb.style.display="none";
    sb.style.width="1px";
  }
}

function ShowMen(s){
  sb=document.getElementById(s);
    sb.style.display="";
    sb.style.width="140px";
    ResetTimer();
}

function MoveTable(m,p){
   mb=document.getElementById(m);
   mb.style.left=p;
   mb.style.position="relative";
}

function b0_onclick(){
  Hideall();
}

function b1_onclick() {
  Hideall();
  ShowMen("mb1");
}

function b2_onclick() {
 Hideall();
  MoveTable("mb2","105px");
  ShowMen("mb2");
}

function b3_onclick() {
 Hideall();
  MoveTable("mb3","225px");
  ShowMen("mb3");
}

function b4_onclick() {
 Hideall();
 MoveTable("mb4","340px");
  ShowMen("mb4");
}



function b5_onclick() {
Hideall();
  MoveTable("mb5","455px");
  ShowMen("mb5");

}

function b6_onclick() {
  Hideall();
}

function b7_onclick() {
  MoveTable("mb7","685px");
Hideall();
  ShowMen("mb7");

}

function ResetTimer(){
  clearTimeout(wtimer);
  wtimer=setTimeout("Hideall()",2000);
}

