function menuOn(img) {
  img.src= img.src.replace("-off.", "-on.");
}

function menuOff(img) {
  img.src= img.src.replace("-on.", "-off.");
}

