function swapImage(id, image){
  var x = document.getElementById(id);
  x.src = image;
}