hoje = new Date()

dia = hoje.getDate()
dias = hoje.getDay()
mes = hoje.getMonth()
ano = hoje.getYear()
	if (dia < 10)
		dia = "0" + dia
	if (ano < 2000)
		ano = "19" + ano

function CriaArray (n)
{
this.length = n
}
NomeDia = new CriaArray(7)
NomeDia[0] = "Domingo"
NomeDia[1] = "Segunda-feira"
NomeDia[2] = "Terça-feira"
NomeDia[3] = "Quarta-feira"
NomeDia[4] = "Quinta-feira"
NomeDia[5] = "Sexta-feira"
NomeDia[6] = "Sábado"

NomeMes = new CriaArray(12)
NomeMes[0] = "Janeiro"
NomeMes[1] = "Fevereiro"
NomeMes[2] = "Março"
NomeMes[3] = "Abril"
NomeMes[4] = "Maio"
NomeMes[5] = "Junho"
NomeMes[6] = "Julho"
NomeMes[7] = "Agosto"
NomeMes[8] = "Setembro"
NomeMes[9] = "Outubro"
NomeMes[10] = "Novembro"
NomeMes[11] = "Dezembro"

var numero_de_imagem =2;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % numero_de_imagem;
ad +=1;

if (ad==1) {
imagem="http://www.imagepro.com.br/images/img_topo_04.jpg";
width="259";
height="125";
}

if (ad==2) {
imagem="http://www.imagepro.com.br/images/img_topo_07.jpg";
width="259";
height="125";
}

document.write('<table width="780" border="0" cellspacing="0" cellpadding="0"><tr><td width="334"><table width="334" border="0" cellspacing="0" cellpadding="0"><tr><td><img src="http://www.imagepro.com.br/images/logo_topo.gif" width="334" height="65"></td></tr><tr><td height="60" valign="bottom"  background="http://www.imagepro.com.br/images/topo_01.gif"><table width="" border="0" cellspacing="3" cellpadding="0"><tr><td width="20"></td><td><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000">');
document.write
(NomeDia[dias] + ", " + dia + " de " + NomeMes[mes] + " de " + ano);
document.write('</font></td></tr></table></td></tr></table></td>')
document.write('<td valign="bottom">')
document.write('<img src=\"' + imagem + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0><br>');
document.write('</td><td width="187" align="right" valign="bottom"><img src="http://www.imagepro.com.br/images/topo_02.gif" width="187" height="125"></td></tr></table>');
