var currentEvent = 1;
var currentShot = 1;

function selectEvent(id)
{
	if (id != currentEvent) {
		$("event"+id).style.display = "block";
		$("event"+currentEvent).style.display = "none";
		$("eventBt"+currentEvent).src = $("eventBt"+currentEvent).src.replace("_on.gif", ".gif");
		$("eventBt"+id).src = $("eventBt"+id).src.replace(".gif", "_on.gif");
		currentEvent = id;
	}
}

function selectShot(id)
{
	if (id != currentShot) {
		$("shot"+id).style.display = "block";
		$("shot"+currentShot).style.display = "none";
		//$("shotBt"+currentShot).src = $("shotBt"+currentShot).src.replace("_on.gif", ".gif");
		//$("shotBt"+id).src = $("shotBt"+id).src.replace(".gif", "_on.gif");
		currentShot = id;
	}
}

