window.onload = initBannerLink;

var adImages = new Array("img/rta_rot_peru.jpg","img/rta_rot_chile.jpg","img/rta_rot_mexico.jpg","img/rta_rot_mauritania.jpg");
var adURL = new Array("maketradefair.com/es/index.php?file=cafta_peru.htm","maketradefair.com/es/index.php?file=cafta_chile.htm","maketradefair.com/es/index.php?file=cafta_mexico.htm","maketradefair.com/es/index.php?file=cafta_mauritania.htm");
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 3 * 1000);
}

function newLocation() {
	document.location.href = "http://www." + adURL[thisAd];
	return false;
}

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}

						
