var imgPath = '/thumb.php?s=imagens/database/news/'; var noticias = null; var noticiaAtual = 0; var pause = false; function resetVars(){ noticias = null; noticias = new Array(); noticiaAtual = 0; pause = false; } function noticiaClass(id, titulo, conteudo, imagem){ this.id=id; this.titulo=titulo; this.conteudo=conteudo; this.imagem=imagem; } function mostraDados(id){ var titulo = $('noticiaTitulo'); var conteudo = $('noticiaConteudo'); var link = $('noticiaLink'); if ((conteudo != undefined)&&(noticias!=null) ){ conteudo.innerHTML = noticias[id].conteudo; } if ((titulo != undefined)&&(noticias!=null)) { titulo.innerHTML = noticias[id].titulo; } if ((link != undefined)&&(noticias!=null)) { link.href = '/noticias/'+ noticias[id].id; } } function carregaDados(reqURL){ new Ajax.Request(reqURL, { onSuccess: function(transport) { /* JSON */ var decoded = eval( transport.responseText ); if(decoded.length>0){ for(var i=0; i=noticias.length){ noticiaAtual=0; } mudaNoticia(noticiaAtual, false); } } function verImagem(id){ var imagem = $(id); if(imagem != null){ popup(imagem.src, 400, 300, imagem.alt); } } function loadNews(){ if( noticias == null){ resetVars(); var cp = $('capa'); if((cp != undefined)&&(cp != null)){ $('capa').fade({ duration: 0.5 }); carregaDados('/noticias.php?json'); } } } // Chamada loadNews();