var ostatni_opis="s_informacyjne";
var opisInt;
var nastepny_opis;
var kolorNr=0;

var kolory = new Array();
kolory[0]="#dc3b47";
kolory[1]="#e74e5a";
kolory[2]="#e95e68";
kolory[3]="#ec727c";
kolory[4]="#ef8890";
kolory[5]="#f29fa5";
kolory[6]="#f5b5ba";
kolory[7]="#f8cbce";
kolory[8]="#fbe0e1";
kolory[9]="#ffffff";


function zmienOpis2(nazwa)
{
	if(ostatni_opis)
	{
		o = document.getElementById("opis_" + ostatni_opis);
		o.style.display = "none";
	}

	o = document.getElementById("opis_" + nazwa);
	o.style.display = "block";
	ostatni_opis = nazwa;

}

function zmienOpis(nazwa)
{
	kolorNr=0;
	nastepny_opis = nazwa;
	if(opisInt)
	{
		clearInterval(opisInt);
	}
	opisInt = setInterval("opisAnim()",10);
}

function zmienOpis3(nazwa)
{
	return;
}

function opisAnim()
{
	if (kolorNr<10)
	{
		o = document.getElementById("opis_" + ostatni_opis);
		o.style.color=kolory[kolorNr];
		kolorNr++;
	}

	if (kolorNr>10)
	{
		o = document.getElementById("opis_" + ostatni_opis);
		o.style.color=kolory[19-kolorNr];
		kolorNr++;
	}

	if (kolorNr==10)
	{
		o = document.getElementById("opis_" + ostatni_opis);
		o.style.display="none";

		o = document.getElementById("opis_" + nastepny_opis);
		o.style.color=kolory[9];
		o.style.display="block";

		ostatni_opis = nastepny_opis;

		kolorNr++;
	}
	else if (kolorNr==20)
	{
		clearInterval(opisInt);
	}

	
}
