// rollover.js

function swap(eltId, URL) {
  var elt = window.document.getElementById(eltId);
  elt.src = URL;
  return;
}
