// Function that will swap the display/no display for
// all content within span tags 
function show_image(click_image)
{
	if (click_image.style.display == "none")
	{
	click_image.style.display = "";
	}
	else
	{
	click_image.style.display = "none";
	}
}