window.onload = function () {

	if (document.getElementById)
	{
		if (document.getElementById('cercali'))
		{
			if (document.getElementById('cercamenu'))
			{
				document.getElementById('cercamenu').style.visibility = "hidden";
				document.getElementById('cerca').onclick = function() {return false;};
				document.getElementById('cerca').onmouseover = function() {document.getElementById('cercamenu').style.visibility = 'visible'};
				document.getElementById('cercali').onmouseover = function() {document.getElementById('cercamenu').style.visibility = 'visible'};
				document.getElementById('cercali').onmouseout = function() {document.getElementById('cercamenu').style.visibility = 'hidden'};
			}
		}
	}
}

function calcolaAppPath(loc)
{
var path = loc.pathname;
var i;
var fD = "";
var n = 0;

	if (path.charAt(0) != "/")
	{
		path = "/"+path;
	}
	for (i = 0; i < path.length; i++)
	{
		if (n < 2)
		{
			fD = fD + path.charAt(i);
			if (path.charAt(i) == '/')
			{
				n += 1;
			}
		}
	}
	return fD;
}

