window.onload = dothis;

var adImages = new Array("images/jarbe.png","images/el_yucateco.png","images/tropical_softdrinks.png","images/chile_sauces.png","images/chocolatelukersol.png","images/hot_pepper.png","images/Mayonesa_McCormick.png");
var adURL = new Array("importedmexicanfoods.com/p_new.htm","importedmexicanfoods.com/p_new.htm","importedmexicanfoods.com/p_new.htm","importedmexicanfoods.com/p_new.htm","importedmexicanfoods.com/p_new.htm","importedmexicanfoods.com/p_new.htm","importedmexicanfoods.com/p_new.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 dothis() {
	if (document.getElementById("adBanner").parentNode.tagName == "B") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}

