window.onload = dothat;

var adImages2 = new Array("images/la_morena.png","images/la_costena.png","images/harina_pan.png","images/guayaquil.png");
var adURL2 = new Array("importedmexicanfoods.com/p_chillies.htm","importedmexicanfoods.com/p_chillies.htm","importedmexicanfoods.com/p_flours.htm","importedmexicanfoods.com/p_fruitsveg.htm");
var thisAd2 = 0;

function rotate2() {
	thisAd2++;
	if (thisAd2 == adImages2.length) {
		thisAd2 = 0;
	}
	document.getElementById("adBanner2").src = adImages2[thisAd2];

	setTimeout("rotate2()", 3 * 1000);
}

function newLocation() {
	document.location.href = "http://www." + adURL2[thisAd2];
	return false;
}

function dothat() {
	if (document.getElementById("adBanner2").parentNode.tagName == "A") {
		document.getElementById("adBanner2").parentNode.onclick = newLocation;
	}
	
	rotate2();
}

