
function SetPad()
 {
	 if(!Get_Cookie("tip_imobil"))
	{
		Terenuri();
		menu_act(0);
	}
	else
	{
		menu_act(Get_Cookie("tip_imobil")-1);
	}
}


function menu_act(a)
{
	for(i=0;i<4;i++)
	{
		if(i!=a)
		{
			document.getElementById("cnt_menu_"+i).className="buttons_inact";

		}
	}
	document.getElementById("cnt_menu_"+a).className="buttons_act";
	
}





