// 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/a_la_venta_el_disco.php';
document.getElementById('noti1').style.backgroundColor = "#FFF";
document.getElementById('noti2').style.backgroundColor = "#EFEFEF";
document.getElementById('noti3').style.backgroundColor = "#EFEFEF";
document.getElementById('titular').innerHTML = 'Luna sobre el valle
Lo más reciente del grupo ya está a la venta';
document.getElementById('milink').href = dire;
laim = document.getElementById('notiimagen');
laim.src = "notiimagen/venta_disco.jpg";
}
else if(noti==1) {
var dire = 'noticias/el_besaor_en_vivo.php';
document.getElementById('noti1').style.backgroundColor = "#EFEFEF";
document.getElementById('noti2').style.backgroundColor = "#FFF";
document.getElementById('noti3').style.backgroundColor = "#EFEFEF";
document.getElementById('titular').innerHTML = 'El Besaor en vivo
Video del concierto en Centro de Arte La Estancia';
document.getElementById('milink').href = dire;
laim = document.getElementById('notiimagen');
laim.src = "notiimagen/besaor_video.jpg";
}
else {
var dire = 'noticias/documental_canonero.php';
document.getElementById('noti1').style.backgroundColor = "#EFEFEF";
document.getElementById('noti2').style.backgroundColor = "#EFEFEF";
document.getElementById('noti3').style.backgroundColor = "#FFF";
document.getElementById('titular').innerHTML = 'El Merengue Caraqueño
Documental cañonero disponible en MySpace.com';
document.getElementById('milink').href = dire;
laim = document.getElementById('notiimagen');
laim.src = "notiimagen/merengue_caraquenio.jpg";
}
noti++;
if(noti>2) { noti = 0; };
}