function selectContent(c)
{
	//alert(c);
	for (i = 0; i <= 16; i++)
	{
		e = document.getElementById("content" + i);
		d = document.getElementById("contenttab" + i);
		if (e)
			e.style.display = ((i == c) ? "block" : "none");
		//else 
			//break;
		if (d) 
		{
			//d.style.backgroundImage = ((i == c) ? "url('../img/tab1.gif')" : "url('../img/tab2.gif')");
			//d.style.fontWeight = ((i == c) ? "bold" : "normal");
            d.style.color = ((i == c) ? "#BD1A1F" : "#333");
		}
	}
}
