adImages = new Array("images/proteo_Home_e.gif","images/cases1_e.gif","images/proteo_Home_e.gif","images/cases2_e.gif","images/proteo_Home_e.gif","images/cases3_e.gif")
adURL = new Array("proteo_e.asp","Aplica_Esp_e.asp","proteo_e.asp","maquina_e.asp","proteo_e.asp","plastico_e.asp")
thisAd = 0
imgCt = adImages.length

//roda imagem
function rotate(){
	if(document.images){
		if(document.adBanner.complete){
			thisAd++
			if(thisAd == imgCt){
				thisAd = 0
			}
			document.adBanner.src=adImages[thisAd]
		}
		setTimeout("rotate()",5*1000)
	}
}

//roda link
function newLocation(){
	document.location.href= adURL[thisAd]
}
