
function toggle_features(target_feature)
	{
	$$("p.feature_detail").each(function(feature)
		{
		$(feature).hide();
		});

	$(target_feature).show();
	}
