var createMenuItems = function(){
  aElements = document.getElementById("panel1b").getElementsByTagName("a");
  aElements[0].onmouseover = function() {
    document.getElementById('menu_v').style.backgroundPosition = "-19px -0px";
  }

  aElements = document.getElementById("panel2b").getElementsByTagName("a");
  aElements[0].onmouseover = function() {
    document.getElementById('menu_v').style.backgroundPosition = "-19px -60px";
  }

  aElements = document.getElementById("panel3b").getElementsByTagName("a");
  aElements[0].onmouseover = function() {
    document.getElementById('menu_v').style.backgroundPosition = "-19px -120px";
  }

  aElements = document.getElementById("panel4b").getElementsByTagName("a");
  aElements[0].onmouseover = function() {
    document.getElementById('menu_v').style.backgroundPosition = "-19px -180px";
  }

  aElements = document.getElementById("panel5b").getElementsByTagName("a");
  aElements[0].onmouseover = function() {
    document.getElementById('menu_v').style.backgroundPosition = "-19px -240px";
  }
  
  aElements = document.getElementById("panel6b").getElementsByTagName("a");
  aElements[0].onmouseover = function() {
    document.getElementById('menu_v').style.backgroundPosition = "-19px -300px";
  }
}
