n = 0;

function avvio()
{
		document.getElementById('schermo').style.visibility = "hidden";
}

function anima(x)
{
	a = x;
	window.setTimeout("ruota(a);",3000);
}

function ruota(t)
{
	if (t == 4)
	{
		t = 1;
	}
	document.images['animazione'].src = "../img/welcome_"+t+".jpg";
	b = t+1;
	window.setTimeout("ruota(b);",3000);
}

function chiudi(q)
{
		n = 0;
		document.getElementById('menu'+q).style.visibility = "hidden";
}

function apri(q)
{
	if (n != q)
	{
		with(document)
		{
			getElementById('menu1').style.visibility = "hidden";
			getElementById('menu2').style.visibility = "hidden";
			getElementById('menu'+q).style.visibility = "visible";
		}
		n = q;
	} else {
		n = 0;
		chiudi (q);
	}
}

function cambia(c,i)
{
	if (c == 0)
	{
		document.getElementById('lk'+i).style.color = "#85010a";
	} else {
		document.getElementById('lk'+i).style.color = "#083535";
	}
}

function aprieng()
{
		document.location = "./inglese/index.htm";
}
