
var feature	= new Array('Rotation','BuiltInCabinets','CedarShadowBoxFacia','CulturedStone','CustomGableGlass','EntryDoor','RedwoodGarageDoor','DoubleRail','DovetailCorner','Fireplace','GableDormer','GablePorch','InteriorLiving','KPPorchCeiling','LogArch','LogFloorJoists','LogGarage','PealedIntFinish','LiveEdge','MilledEdge','SaddleNotch','ShedPorch','Sikkens','LogStairs','TimberTread','TreePorchPost','TreePost','DoubleHung','FrenchCasement');



function Switchfeature(id)
{
	var idfeature = id;

	HideAllfeature();
	Showfeature(idfeature);
}



function HideAllfeature()
{
	for (i=0; i < feature.length; i++)
	{
		Hidefeature(feature[i]);
	}
}



function Hidefeature(id)
{
	//safe function to hide an element with a specified id
	if (document.getElementById)
	{ // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	} else {
		if (document.layers)
		{ // Netscape 4
			document.id.display = 'none';
		} else { // IE 4
			document.all.id.style.display = 'none';
		}
	}
}



function Showfeature(id)
{
	//safe function to show an element with a specified id	  
	if (document.getElementById)
	{ // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	} else {
		if (document.layers)
		{ // Netscape 4
			document.id.display = 'block';
		} else { // IE 4
			document.all.id.style.display = 'block';
		}
	}
}