// Las siguientes lineas son las imagenes y sus enlaces
var arrfotorpubli= new Array();
arrfotorpubli[0]=["despensa2.gif","1","http://www.barladespensa-gulliver.com"];
arrfotorpubli[1]=["vinarufina.gif","2","http://www.bodegassantarufina.com/bodega.html"];
arrfotorpubli[2]=["prevenges.gif","3","http://www.prevenges.com"];
arrfotorpubli[3]=["maradu.gif","4","http://lacucaracha.no-ip.org/15colaboradores.html"];
arrfotorpubli[4]=["markosyllana.gif","5","http://lacucaracha.no-ip.org/15colaboradores.html"];
arrfotorpubli[5]=["cancho.gif","6","http://www.masrugbyporfavor.es"];
arrfotorpubli[6]=["emisionesdeportivas.gif","7","http://www.emisionesdeportivas.com"];

var mfIe = false;
if(document.all) {
	mfIe = true;
	}

var arrfotorpubliIndex = parseInt(Math.random()*arrfotorpubli.length);
	
function mfBannerChange() {
	// En esta linea vemos src="banners/.... Es la carpeta donde estarán las imagenes
	// cambia banners por la carpeta donde estén las imagenes publicitas
	var htmlString = '<a target="_blank" href="'+arrfotorpubli[arrfotorpubliIndex][2]+'"> <img border="0" src="banners_publi_1/'+arrfotorpubli[arrfotorpubliIndex][0]+'"></a>';
	if( mfIe) {
		document.all.banner.innerHTML = htmlString;
	} else {
		document.getElementById("banner").innerHTML=htmlString;
	}
	if(arrfotorpubliIndex < arrfotorpubli.length - 1)
		arrfotorpubliIndex++;
		else
		arrfotorpubliIndex = 0;
	}

// En esta linea cambia 3000 milisegundos (3 segundos) por la cantidad que crees conveniente.
setInterval("mfBannerChange()", 2500);

