// fotos alternativas para entorno
<!--
adImages= new Array
("imagenes/entorno/ejem1.jpg","imagenes/entorno/ejem2.jpg","imagenes/entorno/ejem3.jpg","imagenes/entorno/ejem4.jpg","imagenes/entorno/ejem5.jpg");
thisAd=0;
imgCt=adImages.length;
function rotate()
{
	if (document.images)
		{thisAd++;
		if (thisAd==imgCt)
			{
				thisAd=0;
			}
				document.adBanner.src=adImages[thisAd];
				setTimeout("rotate()", 6*1000);
			
		}
}
-->