setInterval("mudarNoticia('auto')", 5000);

var texto_noticias = new Array();
texto_noticias[0] = "aqui vc coloca as noticias";
texto_noticias[1] = "texto da noticia 1";
texto_noticias[2] = "texto da noticia 2";
texto_noticias[3] = "texto da noticia 3";

var imagem_noticias = new Array();
imagem_noticias[0] = "aqui vc coloca as imagens";
imagem_noticias[1] = "imagem1.jpg";
imagem_noticias[2] = "imagem2.jpg";
imagem_noticias[3] = "imagem3.jpg";

function mudarNoticia( noticia ) {
 if ( noticia == "auto" ) {
 for ( i=0; i<document.getElementsByName('op_noticia').length; i++ ) {
 if ( document.getElementsByName('op_noticia')[i].checked ) {
 noticia = parseInt(document.getElementsByName('op_noticia')[i].value) + 1;
 }
 }
 if ( noticia > texto_noticias.length-1 ) noticia = 1;
 document.getElementsByName('op_noticia')[noticia-1].checked = true;
 }
 document.getElementById("img_noticia").src = imagem_noticias[noticia];
 document.getElementById("txt_noticia").innerHTML = texto_noticias[noticia];
}
