function switchPhoto(img_id, thumb_src, full_src) {
	el = document.getElementById(img_id);
	if (el != null) {
   	el.src = thumb_src;
   } 
	el = el.parentNode;
   if (el != null) {
      el.href = full_src;
   }	
}

