function swap(title, image) {
  img = "<img width=\"500\" height=\"500\" src=\"" + image + "\"/>";
  $('div.large_photo').html(img);
  $('div.large_photo_title').html('<h1>' + title + '</h1>');
}

