﻿// File JScript

// 146px è l'altezza attuale del menu "lingue". Cambiarla quando si inseriscono o tolgono nuove lingue
var langCont = 0;
var langHeight = 146;
var langMove = 5;
var langTime = 10;

function LanguageClick()
{
	if (langCont==0)
	{
		window.document.getElementById('LangList').style.height = langCont + 'px'
		window.document.getElementById('LangList').style.visibility = 'visible';
		window.setTimeout('ApriFinestra()',langTime);
	}
	else
		window.setTimeout('ChiudiFinestra()',langTime);
}
function ApriFinestra()
{
	try{
		langCont += langMove;
		if (langCont > langHeight) langCont = langHeight;
		window.document.getElementById('LangList').style.height = langCont + 'px';
		if (langCont < langHeight)
			window.setTimeout('ApriFinestra()',langTime);
	}catch(ex){}
}
function ChiudiFinestra()
{
	try{
		langCont -= langMove;
		if (langCont < 0) langCont = 0;
		window.document.getElementById('LangList').style.height = langCont + 'px';
		if (langCont > 0)
			window.setTimeout('ChiudiFinestra()',langTime);
	}catch(ex){}
}


//function LanguageOver()
//{
//	try{
//		if (apri == false)
//		{
//			if (cont == 0)
//			{
//				apri = true;
//				document.getElementById('LangList').style.height = 0;
//				document.getElementById('LangList').style.visibility = 'visible';
//				
//				setTimeout('ApriFinestra()',20);
//			}
//		}
//	}catch(ex){}
//}


//function LanguageOut()
//{
//try{
////	document.getElementById('LangList').style.height = cont;
//	//document.getElementById('LangList').style.visibility = 'hidden';
//	
//	setTimeout('ChiudiFinestra()',20);
//}catch(ex){}
//}


