// JavaScript Document
// Image switching script

function changeImage(pic){
	if (!document.getElementById) return false;
	var largephoto = document.getElementById("largephoto");
	largephoto.src = pic
}


