
var slideShowTxtSpeed = 5000; // время

var TxtsCnt = 10;
var nTxt = TxtsCnt-1;


function runTxtShowDirSp()
{
  if (show_anim_dir_sp != true)
	return;

      nTxt = (nTxt+1) % TxtsCnt;

			//var i = 0;
			for (i=0; i<TxtsCnt; i++)
				if (i == nTxt)
					document.getElementById("dir_sp_cnt" + i).style.display = "inline";
				else
					document.getElementById("dir_sp_cnt" + i).style.display = "none";

      //dir_sp_cnt0.filters.blendTrans.Apply();
      //dir_sp_cnt0.filters.blendTrans.Play();

      //	alert("chg");

      setTimeout('runTxtShowDirSp()', slideShowTxtSpeed);
}
