				var stepconter=1;
				var stepCount;
				var maxStepCount = 5
				maxStepCount = maxStepCount+1;
				function ShowStep(selectedItemIndex)
				{
				StepStop();
				for(i=1;i<maxStepCount;i++)
				{
				if(i!=selectedItemIndex)
				{
				document.getElementById('etkinlikwizard'+i).style.display = 'none';
				}
				else
				{
				document.getElementById('etkinlikwizard'+i).style.display = 'block';

				}
				}
				}
				function StepStart(stepconterNum)
				{
				if(stepconterNum!=-1)
				stepconter = stepconterNum;
				if(stepconter==maxStepCount) stepconter=1;
				for(i=1;i<maxStepCount;i++)
				{
				if(i!=stepconter)
				{
				document.getElementById('etkinlikwizard'+i).style.display = 'none';
				}
				else
				{
				document.getElementById('etkinlikwizard'+i).style.display = 'block';
				}
				}
				stepconter=stepconter+1;
				stepCount=setTimeout("",5000);
				}

				function StepStop()
				{
				clearTimeout(stepCount);
				}
				StepStart(-1);
				document.getElementById('etkinlikwizard1').style.display = 'block';