function rollover(e) {
  if (e.getAttribute("srcout") == null) e.setAttribute("srcout", e.src);
  if (e.getAttribute("srcout") == null || e.getAttribute("srcover") == null) return;
  e.src = e.getAttribute("srcover");
}

function rollout(e) {
  if (e.getAttribute("srcout") == null) return;
  e.src = e.getAttribute("srcout");
}