// Las siguientes lineas son las imagenes y sus enlaces
var arrfotorpubli= new Array();
arrfotorpubli[0]=["anunciate.gif","1","http://www.lacucarachachamiza.com/15colaboradores.html#1"];
arrfotorpubli[1]=["emisionesdeportivas.gif","2","http://www.emisionesdeportivas.com"];
arrfotorpubli[2]=["maradu.gif","3","http://www.lacucarachachamiza.com/15colaboradores.html"];
arrfotorpubli[3]=["radiocyl.gif","4","http://www.radiocastillayleon.com"];
arrfotorpubli[4]=["despensa2.gif","5","http://www.barladespensa-gulliver.com"];
arrfotorpubli[5]=["maxxl.gif","6","http://www.maxxl.jimdo.com"];
//arrfotorpubli[2]=["prevenges.gif","3","http://www.prevenges.com"];
//arrfotorpubli[4]=["cancho.gif","5","http://www.masrugbyporfavor.es"];


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);


