function swapImage(image,title) {
  var thetitle = document.getElementById("title");
  thetitle.firstChild.nodeValue = title;
  document.images.largeimg.src = "works/" + image;
  document.images.largeimg.alt = title;
}