/**
 * @author Regis A. James
 * This script doesn't work right now because I haven't yet figured out a better way to write name option spans.
 */

function optionDisplay(targetSpan)
{/*
	// Make all other options invisible.
	hideAllSpans(spanHoveredOver,totalSpans);*/
	// Make option hovered over visible.
	targetSpan.style.display = "";
}

function optionHide(targetSpan)
{
	targetSpan.style.display = "none";
}

