var HTTP_WEB_ROOT = "http://www.centralfiestas.com/"

//Función para IE 6
startList = function() {
	if( document.getElementById("mapa") ) inicia_mapa('40.417727','-3.7082721');
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

/* ------------------- AVISO LEGAL ------------------------ */

function carga_div(nombre) {
	ddrivetip('<div id=\''+nombre+'\'></div>');
}

var con_aviso_legal = new XHConn();
var fin_aviso_legal = function (oXML) { document.getElementById('nota_legal').innerHTML = oXML.responseText; };
function aviso_legal() {
	con_aviso_legal.connect(HTTP_WEB_ROOT + '_dinamic/nota_legal.php', 'POST', '', fin_aviso_legal);
}
