// JavaScript Document

function boot() {
			
			//funcion cargador de navegacion sobre cabecera
			function enlaces(idLinea,direccion,texto){
			var direccion;	
			var texto;
			var linea = document.createElement("li");
				linea.setAttribute("id", idLinea);
				linea.innerHTML = "&raquo; ";
			var pintarLinea = document.getElementById('topNavMenu').appendChild(linea);
			var aObj = document.createElement("a");
				aObj.setAttribute("target", '_blank');
				aObj.setAttribute("href", direccion);
				aObj.innerHTML = texto;
			var pintarEnlace = document.getElementById(idLinea).appendChild(aObj);
			
			}
			enlaces("irFeb","http://www.feb.es","FEB.es");
			enlaces("ed2008","http://www.mundialitobaloncesto.com/2008/index.html","Ver Edición del 2008");
			enlaces("ed2007","http://www.mundialitobaloncesto.com/2007/index.html","Ver Edición del 2007");
			
			
			//funcion cargador de navegacion secciones del site
			function secciones(idLinea,direccion,texto){
			var direccion;	
			var texto;
			var linea = document.createElement("li");
				linea.setAttribute("id", idLinea);
			var pintarLinea = document.getElementById('listadoSecciones').appendChild(linea);
			var aObj = document.createElement("a");
				aObj.setAttribute("target", '_self');
				aObj.setAttribute("href", direccion);
				aObj.innerHTML = "&raquo; " + texto;
			var pintarEnlace = document.getElementById(idLinea).appendChild(aObj);
			
			}
			secciones("inicioId","index.html","Inicio");
			secciones("requisitosId","requisitos.html","Requisitos");
			secciones("calendarioId","calendario.html","Grupos y Calendario");
			secciones("equiposId","equipos.html","Equipos");
			secciones("resultadosId","resultados.html","Resultados/Clasificaciones");
			secciones("lugarId","lugar.html","Lugar/C&oacute;mo Llegar?");
			secciones("noticiasId","noticias.html","Noticias");
			secciones("imagenesId","imagenes.html","Fotografías");
			secciones("enlacesId","enlaces.html","Enlaces");
			secciones("contactoId","contacto.html","Contacto");
			secciones("otrasEdicionesId","otrasEdiciones.html","Otras Ediciones");
			
}

	
