    var proxNoticia = 0;
    var noticias = new Array();
    noticias[0] = "<a href='imagens/fotos-empresa/foto1g.jpg' rel='lightbox[empresa]'><img src='imagens/fotos-empresa/foto1.jpg' width='246' height='121' border='0'></a>";
    noticias[1] = "<a href='imagens/fotos-empresa/foto2g.jpg' rel='lightbox[empresa]'><img src='imagens/fotos-empresa/foto2.jpg' width='246' height='121' border='0'></a>";
    noticias[2] = "<a href='imagens/fotos-empresa/foto3g.jpg' rel='lightbox[empresa]'><img src='imagens/fotos-empresa/foto3.jpg' width='246' height='121' border='0'></a>";
    noticias[3] = "<a href='imagens/fotos-empresa/foto4g.jpg' rel='lightbox[empresa]'><img src='imagens/fotos-empresa/foto4.jpg' width='246' height='121' border='0'></a>";
	noticias[4] = "<a href='imagens/fotos-empresa/foto5g.jpg' rel='lightbox[empresa]'><img src='imagens/fotos-empresa/foto5.jpg' width='246' height='121' border='0'></a>"
    
function mudaNoticia(){
    document.getElementById('empresa-imagem').innerHTML = noticias[proxNoticia];

    if (proxNoticia == noticias.length-1)
    {
        proxNoticia = 0;
    }
    else
    {
        proxNoticia++;
    }
}

window.setInterval(mudaNoticia, 10000);

