/* features listing javascript - hand rolled by p11 */

function resetFeatures() {
	for (count = 1; count < 7; count++) {
		document.getElementById("feat"+count).style.color = "#000000";
		document.getElementById("feat"+count).style.fontWeight = "normal";
	}
}
function featuresChange(featureNumber) {
	resetFeatures();
	document.getElementById(featureNumber).style.color = "#660000";
	document.getElementById(featureNumber).style.fontWeight = "bold";
}
