/*inicio fechacabecera*/
function fecha() {
  fecha = new Date();
  mes = fecha.getMonth();
  diaMes = fecha.getDate();
  diaSemana = fecha.getDay();
  anio = fecha.getFullYear();
  dias = new Array('Domingo','Lunes','Martes','Miercoles','Jueves','Viernes','Sábado');
  meses = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre');
  document.write('<span id="fecha">');
  document.write(dias[diaSemana] + ", " + diaMes + " de " + meses[mes] + " de " + anio);
  document.write('</span>');
}
/*fin fechacabecera*/

/*inicio menucabecera*/
var menuSlider=function(){
	var m,e,g,s,q,i; e=[]; q=8; i=8;
	return{
		init:function(j,k){
			m=document.getElementById(j);
			e=m.getElementsByTagName('li');
			var i,l,w,p; i=0; l=e.length;
			for(i;i<l;i++){
				var c,v; c=e[i]; v=c.value; if(v==1){s=c; w=c.offsetWidth; p=c.offsetLeft}
				c.onmouseover=function(){menuSlider.mo(this)}; c.onmouseout=function(){menuSlider.mo(s)};
			}
			g=document.getElementById(k); g.style.width=w+'px'; g.style.left=p+'px';
		},
		mo:function(d){
			clearInterval(m.tm);
			var el,ew; el=parseInt(d.offsetLeft); ew=parseInt(d.offsetWidth);
			m.tm=setInterval(function(){menuSlider.mv(el,ew)},i);
		},
		mv:function(el,ew){
			var l,w; l=parseInt(g.offsetLeft); w=parseInt(g.offsetWidth);
			if(l!=el||w!=ew){
				if(l!=el){var ld,lr,li; ld=(l>el)?-1:1; lr=Math.abs(el-l); li=(lr<q)?ld*lr:ld*q; g.style.left=(l+li)+'px'}
				if(w!=ew){var wd,wr,wi; wd=(w>ew)?-1:1; wr=Math.abs(ew-w); wi=(wr<q)?wd*wr:wd*q; g.style.width=(w+wi)+'px'}
			}else{clearInterval(m.tm)}
}};}();
/*fin menucabecera*/

/*inicio divcontenidos*/
function abrir(url, id_contenedor) {
	var pagina_requerida = false;
	if (window.XMLHttpRequest) {// Si es Mozilla, Safari etc
		pagina_requerida = new XMLHttpRequest()
	}
	else if (window.ActiveXObject){ // pero si es IE
		try {
			pagina_requerida = new ActiveXObject("Msxml2.XMLHTTP")
		} 
		catch (e){ // en caso que sea una versión antigua
			try{
				pagina_requerida = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (e){}
		}
	}
	else
		return false
	pagina_requerida.onreadystatechange=function(){ // función de respuesta
	cargarpagina(pagina_requerida, id_contenedor)
	}
	pagina_requerida.open('GET', url, true) // asignamos los métodos open y send
	pagina_requerida.send(null)
}
function cargarpagina(pagina_requerida, id_contenedor){
	if (pagina_requerida.readyState == 4 && (pagina_requerida.status==200 || window.location.href.indexOf("http")==-1))
		document.getElementById(id_contenedor).innerHTML=pagina_requerida.responseText
}
/*fin divcontenidos*/

/*inicio menuintermedio*/
function entra(nom,desc,colorfondo,colorletra) {
	n=document.getElementById(nom);
	n.style.backgroundColor=colorfondo;
	n.style.color=colorletra;
	d=document.getElementById(desc);
	d.style.backgroundColor=colorfondo;
	d.style.color=colorletra;
}
function sale(nom,desc,colorfondo) {
	n=document.getElementById(nom);
	n.style.backgroundColor=colorfondo;
	n.style.color='#000';
	d=document.getElementById(desc);
	d.style.backgroundColor=colorfondo;
	d.style.color='#343434';
}
/*fin menuintermedio*/

/*inicio pagina noticias*/
function volver() {
	window.location='index.php';
}
function volveradm() {
	abrir('admision.php','contenidos');
}
function volverofbien() {
	abrir('ofbienestar.php','contenidos');
}
/*fin pagina noticias*/
