// JavaScript Document
//Banner rotativo
hoje = new Date()
numero_de_imagens = 2
segundos = hoje.getSeconds()
numero = segundos % numero_de_imagens
if (numero == 0){
banner = "http://www.feirasnacipa.com.br/exposec/imagens/banner_expressao.gif"
link = "http://www.expressaocapital.com.br"
alvo = "out"
texto= "Banner1"
}

document.write('<a href="' + link + '" target="' + alvo + '"><img src="' + banner + '" alt="' + texto + '" width="102" height="41" border="0"></a>')
