// JavaScript Document var id = window.setInterval("actualiza();",7000); function pon(cual) { window.clearInterval(id); noti = cual; actualiza(); id = ""; id = setInterval("actualiza();",7000); } if(noti==undefined) { var noti = 0; } function actualiza() { if(noti==0) { var dire = 'noticias/prensa_y_mas.php'; document.getElementById('noti1').style.backgroundColor = "#FFF"; document.getElementById('noti2').style.backgroundColor = "#EFEFEF"; document.getElementById('noti3').style.backgroundColor = "#EFEFEF"; document.getElementById('titular').innerHTML = 'Prensa, reseñas y más
Nuevo álbum fotográfico'; document.getElementById('milink').href = dire; laim = document.getElementById('notiimagen'); laim.src = "notiimagen/Prensa.jpg"; } else if(noti==1) { var dire = 'noticias/cumple29.php'; document.getElementById('noti1').style.backgroundColor = "#EFEFEF"; document.getElementById('noti2').style.backgroundColor = "#FFF"; document.getElementById('noti3').style.backgroundColor = "#EFEFEF"; document.getElementById('titular').innerHTML = 'Cumplimos 29 años
Lo celebramos con la fiesta 29 pa 30'; document.getElementById('milink').href = dire; laim = document.getElementById('notiimagen'); laim.src = "notiimagen/cumple29.jpg"; } else { var dire = 'noticias/sabado_sensacional_80.php'; document.getElementById('noti1').style.backgroundColor = "#EFEFEF"; document.getElementById('noti2').style.backgroundColor = "#EFEFEF"; document.getElementById('noti3').style.backgroundColor = "#FFF"; document.getElementById('titular').innerHTML = 'Sábado Sensacional 80s
Selección de presentaciones de Los Cañoneros'; document.getElementById('milink').href = dire; laim = document.getElementById('notiimagen'); laim.src = "notiimagen/Sabado_sensacional.jpg"; } noti++; if(noti>2) { noti = 0; }; }