function SwapImage(id) {
    document.getElementById(id).src = swapimages[id]["over"];
}

function RestoreImage(id) {
  document.getElementById(id).src = swapimages[id]["normal"];
}