// JavaScript Document

function swap_photo(img){
	var swap = document.getElementById(img);
	if(swap == null){
		return 0;	
	}
	if(swap.style.display == "none"){
		swap.style.display = "block";
	}
	else{
		swap.style.display = "none";	
	}
}
