// swap image ~ imgPhoto is the name of the main image that you want to swap
function swapimg (IMGSRC){
document.images.imgPhoto.src = IMGSRC;
}

// restore the main image called imgPhoto with the original image
function swaprestore (imgorg){
document.images.imgPhoto.src = imgorg;
}
