
var numeroimg = 2
var imgatual = 0

function banneroda(){

imgatual = imgatual + 1

if(imgatual > numeroimg) { imgatual = 1}

var cota=new Array(numeroimg)
     cota[0]="";  
	 
	   cota[1]="<a href=/eventos/event-98.html target=_blank ><img src=eventos/banner-98.gif border=0 style='width:198px; height:106px;'> </a>";
	   cota[2]="<a href=/eventos/event-97.pdf target=_blank ><img src=eventos/banner-97.gif border=0 style='width:198px; height:106px;'> </a>";
	   cota[3]="<img src=eventos/80anos.jpg border=0 style='width:198px; height:106px;' />";
	



var banneresp = document.getElementById('banneresp');
if(banneresp){
	banneresp.innerHTML = cota[imgatual];
}


setTimeout("banneroda()",4000)
}


window.onload = function() {setTimeout("banneroda()",1000)}
