<!--
function init(menuIntro,lang)
{
	if (menuIntro==undefined) menuIntro = 0;
	initFlash(menuIntro,lang);
	if (document.getElementById('moveH1')) {
		var moveH1 = document.getElementById('moveH1');
		document.getElementById('h1').innerHTML = moveH1.innerHTML;
		moveH1.parentNode.removeChild(moveH1);
	}
}

function initFlash(menuIntro,l) {
	var flashvars = {intro:menuIntro,lang:l};
	var params = {wmode: "transparent",swLiveConnect:true};
	var attributes = {};
	swfobject.embedSWF("library/flash/header.swf", "header", "1000", "325", "9.0.0", false, flashvars, params, attributes);
}


/************
 * EMERIGOS *
 ************/

function eon2(a)
{
	document.getElementById('emeon').style.opacity=a/10;
	document.getElementById('emeon').style.filter='alpha(opacity='+a*10+')';
	if (a<10) setTimeout("eon2("+(a+1)+")",25);
}

function eon(a)
{
document.getElementById('emeoff').style.opacity=a/10;
document.getElementById('emeoff').style.filter='alpha(opacity='+a*10+')';
if (a>0) setTimeout("eon("+(a-1)+")",20);
	else
	{
	document.getElementById('emeoff').style.display='none';
	document.getElementById('emeon').style.display='';
	document.getElementById('emeon').style.opacity=0;
	document.getElementById('emeon').style.filter='alpha(opacity=0)';
	eon2(0);
	}
}
	
function eoff2(a)
{
document.getElementById('emeoff').style.filter='alpha(opacity='+a*10+')';
document.getElementById('emeoff').style.opacity=a/10;
if (a<10) setTimeout("eoff2("+(a+1)+")",25);
}

function eoff(a)
{
document.getElementById('emeon').style.filter='alpha(opacity='+a*10+')';
document.getElementById('emeon').style.opacity=a/10;
if (a>0) setTimeout("eoff("+(a-1)+")",20);
	else
	{
	document.getElementById('emeon').style.display='none';
	document.getElementById('emeoff').style.display='';
	document.getElementById('emeoff').style.filter='alpha(opacity=0)';
	document.getElementById('emeoff').style.opacity=0;
	eoff2(0);
	}
}
-->
