function mover()
{
Layer1.style.visibility = "visible";
var tpos=160;
var lpos=tdata.offsetLeft+170;
Layer1.style.top=160;
Layer1.style.left=lpos;
}
function mout()
{
Layer1.style.visibility = "hidden";
}

//divide menu
//from credits

function credit()
{
var wbottom = document.getElementById('bside');

  var selectedPosY = 0;
              
  while(wbottom != null){
    selectedPosY += wbottom.offsetTop;
    wbottom = wbottom.offsetParent;
  }
Credits.style.visibility = "visible";

var tpos= selectedPosY + 122;
var lpos= 205;
Credits.style.top=tpos;
Credits.style.left=lpos;
}
function cout()
{
Credits.style.visibility = "hidden";
}


