// JavaScript Document

adImages5 = new Array("images/promotional/mexico1.jpg","images/promotional/mexico2.jpg","images/promotional/mexico3.jpg")

thisAd5 = 0

imgCt5 = adImages5.length

function rotate() {
	if(document.images) {
		
		thisAd5++
		if(thisAd5 == imgCt5) {
			thisAd5 = 0
		}
		document.adBanner5.src=adImages5[thisAd5]
		
		setTimeout("rotate()",4*1000)
	}
}

