var last = new Array(0,0);
var cnt = new Array(4,5);

last[1]=0;
function ch_v(opt,pref)
{
	if (last[pref]!=opt)
	{	
		if (last[pref]<cnt[pref] )
			{
				document.getElementById(pref+'kon'+last[pref]).className = 'tlo3';
			}
		if ((last[pref]-1)>=0 )
			{
					document.getElementById(pref+'kon'+(last[pref]-1)).className = 'tlo3';
			}		
			
		if (opt<(cnt[pref]-1) )
			{
				document.getElementById(pref+'kon'+opt).className = 'tlo3';
			}
		if ((opt-1)>=0 )
			{
				if (opt==1)
					document.getElementById(pref+'kon0').className = 'tlo3';
						else 
							document.getElementById(pref+'kon'+(opt-1)).className = 'tlo3';
			}		
		if (last[pref]==0)
			{
				document.getElementById(pref+'tab0').className = '';	
			}              
			var styl='style6'
	   if(pref==2){
	      styl='style6 style8';
	   }
	   document.getElementById(pref+'now'+last[pref]).style.display ="none";
		document.getElementById(pref+'now'+opt).style.display ="block";
		document.getElementById(pref+'tab'+last[pref]).className = 'tlo1'+pref+last[pref]+' tah12_meni';
		document.getElementById(pref+'tab'+opt).className = 'tlo_n'+pref+opt+' tah12_meni '+styl;
		last[pref] = opt;
	}
}