//Recoge la imagen de fondo que tiene que mostrar al hacer click en el enlace y  el id del botón donde la tiene que cambiar

function cambio(laurl, id_boton){
        var objeto= document.getElementById(id_boton);
        objeto.style.background = 'url('+laurl+')';
}


//Muestra de inicio las imágenes de fondo de cada botón.  Sin hacerlo desde aquí, el style.background  no funciona en la anterior funcion
function asignoFondos(){
        var objeto= document.getElementById("agenda");
		objeto.style.background = "url(img/fondos/fondo_btn_agenda.png)";
		
		var objeto= document.getElementById("personalizado");
		
			if (objeto) {
				objeto.style.background = "url(img/fondos/fondo_btn_personalizado.png)";
			}
		
		
		var objeto= document.getElementById("revista");
		objeto.style.background = "url(img/fondos/fondo_btn_clarion.png)";
		
		var objeto= document.getElementById("sugerencias");
		objeto.style.background = "url(img/fondos/fondo_btn_sugerencias.png)";
		
		var objeto= document.getElementById("apa");
		objeto.style.background = "url(img/fondos/fondo_btn_apa.png)";
		
		var objeto= document.getElementById("video");
		objeto.style.background = "url(img/fondos/fondo_btn_video.png)";
		
		var objeto= document.getElementById("montana");
		objeto.style.background = "url(img/fondos/fondo_btn_montana.png)";
		
		var objeto= document.getElementById("exalumnos");
		objeto.style.background = "url(img/fondos/fondo_btn_ex_alumnos.png)";
}

