function ShowOtherClients ()
{
	document.getElementById("otherClients").className=document.getElementById("otherClients").className+" visible";
	document.getElementById("otherClientsLink").className=document.getElementById("otherClientsLink").className+" hidden";
}
function ShowRecomendaion(n)
{
	for (var i = 1; i<=7; i++)
	{
		if (i==n)
		{
			document.getElementById("recomendTitle"+i).className="currentRecomendTitle margin-bottom10";
			document.getElementById("recomendText"+i).className="visible";
		}
		else
		{
			document.getElementById("recomendTitle"+i).className="recomendLinks margin-bottom10";
			document.getElementById("recomendText"+i).className="hidden";
		}
	}
}
