var manset_sayisi = 10;

function dgid(obj)
   {
	  return document.getElementById(obj);
   } // function dgid(obj)
function displayDIVBlock(id) 
   {
		var obj = document.getElementById(id);
		if (obj != null) obj.style.display = "block"
   }
function hideDIVBlock(id) 
   {
		var obj = document.getElementById(id);
	    if (obj != null) obj.style.display = "none"
   }
var secili_manset = 0;
var manset_degisme_suresi = 3000;
var mansetTimeout =1;
function manset_goster() 
	{
		for (i=0;i<manset_sayisi;i++) 
			{
				if  (i == secili_manset) 
					{
						dgid("manset_"+i).style.display = "block";
						dgid("manset_serit_"+i).className = "serit_aktif";
					}
				else
					{
						dgid("manset_"+i).style.display = "none";
						dgid("manset_serit_"+i).className = "serit_pasif";
					} //if
			} //for
	} //function
function manset_degistir(mansetId) 
	{
		if  (mansetId >= 0) 
			{
				clearTimeout(mansetTimeout);
				secili_manset = mansetId;
				manset_goster();
			}
		else 
			{
				manset_goster();
				secili_manset = secili_manset + 1;
				if(secili_manset >= manset_sayisi) secili_manset = 0;
				mansetTimeout = setTimeout("manset_degistir(-1)", manset_degisme_suresi);
			} //if
	} //function
mansetTimeout = setTimeout("manset_degistir(-1)", manset_degisme_suresi);
