function pulsaBotonMenu(boton){
	document.getElementById(boton).style.border="none";
//	document.getElementById(boton).style="font-weight: normal";
}
function soltarBotonMenu(boton){
	document.getElementById(boton).style.border="thin outset #CCCCCC";
//	document.getElementById(boton).style="font-weight: bold";
}
function clickMenu(donde, boton){
	if (boton=='inicio' || boton=='tienda' || boton=='contacto' || boton=='colaboradores'){
		document.getElementById('menuQuienes').style.display="none";
		document.getElementById('menuActividades').style.display="none";
		document.getElementById('menuNoticias').style.display='none';
		document.getElementById('menuServicios').style.display='none';
	}
	if (boton=='quienessomos'){
		document.getElementById('menuQuienes').style.display="block";
		document.getElementById('menuActividades').style.display="none";
		document.getElementById('menuNoticias').style.display='none';
		document.getElementById('menuServicios').style.display='none';
	}else if (boton=='actividades'){
		document.getElementById('menuQuienes').style.display="none";
		document.getElementById('menuActividades').style.display="block";
		document.getElementById('menuNoticias').style.display='none';
		document.getElementById('menuServicios').style.display='none';
	}else if (boton=='noticias'){
		document.getElementById('menuQuienes').style.display='none';
		document.getElementById('menuActividades').style.display='none';
		document.getElementById('menuNoticias').style.display='block';
		document.getElementById('menuServicios').style.display='none';
	}else if (boton=='servicios'){
		document.getElementById('menuQuienes').style.display='none';
		document.getElementById('menuActividades').style.display='none';
		document.getElementById('menuNoticias').style.display='none';
		document.getElementById('menuServicios').style.display='block';		  
	}
}
function clickSubMenu(boton){
	if ((boton=='atencionPsico')||(boton=='atencionTSocial')||(boton=='atencionFisio')||(boton=='atencionOcupa')||(boton=='atencionLogo')){
		document.getElementById('menuServicios').style.display='none';
	}
	if ((boton=='articulos')||(boton=='publicaciones')||(boton=='listaNoticias')){
		document.getElementById('menuNoticias').style.display='none';	
	}
	if ((boton=='juntaDirectiva')||(boton=='asociacion')||(boton=='trabajadores')||(boton=='voluntarios')||(boton=='cuidadores')){
		document.getElementById('menuQuienes').style.display='none';	
	}
	if ((boton=='memoria')||(boton=='aRealizar')){
		document.getElementById('menuActividades').style.display='none';
	}
}
function cargar(){
	document.getElementById('cuerpo').innerHTML="noticias/listaNoticias.htm";
}
function verNoticia(noticia){
	ocultarNoticia(noticia);
	document.getElementById(noticia).style.display='block';
}
function ocultarNoticia(noticia){
	var numTotal = numNoticias();
	var borrar = '';
	for (i=1;i<numTotal; i++){
		borrar = 'noticia'+i;
		if (borrar!=noticia){
			document.getElementById(borrar).style.display='none';
		}
	}
}
function cambiarCSS(css) {
	document.getElementById('estilo').href = css;
}