n = 1

function ruotaImg() {
  imgname = "menuImg";
  next = n+1;
  imgsrc = "img" + next + ".jpg";
  document.getElementById('nImg').src='img/menuImg/' + imgsrc;
  n++;
  if (n == 7) {
    n = 0;
  }
}
