function addLoadEvent(func) 
{
	var oldonload = window.onload;
	if (typeof window.onload != 'function')
		window.onload = func;
	else 
	{
		window.onload = function()
		{
			oldonload();
			func();
		}
	}
}


function cargarUtilidades()
{
	var aUtilidades;
	
	if (document.getElementById)
	{
		if (document.getElementById('utilidades') && document.getElementById('titulo'))
		{
			aUtilidades = document.getElementById('utilidades').getElementsByTagName('a');
			for (i = 0; i < aUtilidades.length; i++ )
			{
				aUtilidades[i].onmouseout = function()
				{
					// Ocultar
					// Quitar background
					document.getElementById('titulo').firstChild.nodeValue = '';
					document.getElementById('titulo').style.display = 'none';
					
				}
				aUtilidades[i].onmouseover = function()
				{
					// Mostrar
					//document.getElementById('titulo').innerHTML = this.firstChild.alt;
					//var oTextNode = document.createTextNode("New List Item 1");
				   	//var oReplaceNode = oItem1.firstChild.replaceNode(oTextNode);
					document.getElementById('titulo').firstChild.nodeValue = this.firstChild.alt//(document.createTextNode(this.firstChild.alt));
					document.getElementById('titulo').style.display = 'block';

					// Poner background
					
				}
			}
/*
                                    <a href="calendario/calendario.asp?id_lugar=1&lugar=Madrid"><img alt="Calendario" src="img/cal.png"></a>
                                    <a href="calendario/rss/calendario.asp"><img alt="RSS" src="img/rss.png"></a>
                                    <a href="enews/enews.asp"><img alt="RSS" src="img/enews.png"></a>
*/			
		}
	}
}

addLoadEvent(cargarUtilidades);
