function nav_ant() {
	document.getElementById("muro_ant").src = "/media/imagenes/iconos/slideAnterior_over.gif";
}
function nav_ant_out() {
	document.getElementById("muro_ant").src = "/media/imagenes/iconos/slideAnterior.gif";
}
function nav_pausa() {
	document.getElementById("muro_pausa").src = "/media/imagenes/iconos/slidePausa_over.gif";
}
function nav_pausa_out() {
	document.getElementById("muro_pausa").src = "/media/imagenes/iconos/slidePausa.gif";
}
function nav_sgte() {
	document.getElementById("muro_sgte").src = "/media/imagenes/iconos/slideSiguiente_over.gif";
}
function nav_sgte_out() {
	document.getElementById("muro_sgte").src = "/media/imagenes/iconos/slideSiguiente.gif";
}
function noticia(imagen,titulo,texto,enlace){
	noticiero.push({
				imagen:imagen,
				texto:texto,
				titulo:titulo,
				enlace:enlace
	});
}
function obj(x){
	return document.getElementById(x);
}
function mostrar(a){
	obj("imagen_muro").src=noticiero[a].imagen;
	obj("titulo_muro").innerHTML=noticiero[a].titulo;
	obj("texto_muro").innerHTML=noticiero[a].texto;
	obj("enlace_muro").href=noticiero[a].enlace;
	obj("enlace_muro1").href=noticiero[a].enlace
}
function cambiar(incr){
	b = (noticiero.length>b+incr)?b+incr:0;
	if(b==-1){b=noticiero.length-1;}
	mostrar(b);
}
function inicio(){
	not=setInterval("cambiar(1)",espera*1000);
}