﻿function showit(which)
{
	for (var x = 1; x < 8; x++)
	{
		document.getElementById("feature" + x).style.display = "none";
	}
	document.getElementById("feature" + which).style.display = "block";
	return;
}
