// JavaScript Document

var fondos = ["Imagenes/fondo_index/equipo.jpg", "Imagenes/fondo_index/liberman_completo.jpg", "Imagenes/fondo_index/Jaime_Viafara.jpg", "Imagenes/fondo_index/kenny_moreno.jpg", "Imagenes/fondo_index/made.jpg", "Imagenes/fondo_index/CIMED_COC-Colombia_02.jpg", "Imagenes/fondo_index/yurany_martha.jpg", "Imagenes/fondo_index/COC-Colombia_Nacional-URU_02.jpg", "Imagenes/fondo_index/COC-Colombia.jpg"];
var actual = 0;
function fond(){
setInterval("document.getElementById('fondo_cambiante').style.backgroundImage = 'url(' + fondos[actual++ % fondos.length] + ')'", 5000);
}

function cambia_color1(){
	document.getElementById('sig').style.color = '#F00';
}
function cambia_color2(){
	document.getElementById('sig').style.color = '#999';
}
