function init() {
	if (TransMenu.isSupported()) 
	{
		TransMenu.initialize();
		menu1.onactivate = function() { document.getElementById("m_portada").className = "hover"; };
		menu1.ondeactivate = function() { document.getElementById("m_portada").className = ""; };
		menu2.onactivate = function() { document.getElementById("m_sobre").className = "hover"; };
		menu2.ondeactivate = function() { document.getElementById("m_sobre").className = ""; };
		menu3.onactivate = function() { document.getElementById("m_quehacer").className = "hover"; };
		menu3.ondeactivate = function() { document.getElementById("m_quehacer").className = ""; };
		menu4.onactivate = function() { document.getElementById("m_participa").className = "hover"; };
		menu4.ondeactivate = function() { document.getElementById("m_participa").className = ""; };
		menu5.onactivate = function() { document.getElementById("m_enlaces").className = "hover"; };
		menu5.ondeactivate = function() { document.getElementById("m_enlaces").className = ""; };
		menu6.onactivate = function() { document.getElementById("m_contacta").className = "hover"; };
		menu6.ondeactivate = function() { document.getElementById("m_contacta").className = ""; };
	}
}

var funciones_inicio=new Array();

function initPage() {
	try 
	{
		init();
	} 
	catch (e) 
	{
	}
	
	for(var i=0;i<funciones_inicio.length;i++)
	{ 
		try 
		{
			eval(funciones_inicio[i]);
		}
		catch (e)
		{
		}
	} 
}

function AgregarFuncionInicial(funcion)
{
	funciones_inicio[funciones_inicio.length]=funcion;
}