// JavaScript Document
function trocaSlideNumero(i){
	i++;
	document.getElementById("n1").src = "img/n1.png";
	document.getElementById("n2").src = "img/n2.png";
	document.getElementById("n3").src = "img/n3.png";
	document.getElementById("n"+i).src = "img/n"+i+"-hover.png";
}
function trocaSlide(i){
	//if (document.all) {
		//document.getElementById("imgBoxHomeFoto").style.filter="blendTrans(duration=2)";
		//document.getElementById("imgBoxHomeFoto").style.filter="blendTrans(duration=crossFadeDuration)";
		//document.getElementById("imgBoxHomeFoto").filters.blendTrans.Apply();
	//}

	document.getElementById("imgBoxHomeFoto").src = "img/" + notF[i];
	
	//if (document.all) {
		//document.getElementById("imgBoxHomeFoto").filters.blendTrans.Play();
	//}
	
	trocaSlideNumero(i);
}

//===========================================
// Velocidade
slideShowSpeed = 5000; // Tempo para troca das fotos em milisegundos
j=0;
function runSlideShow() {
	trocaSlide(j);
	j++;
    if (j > (notF.length- 1)) j = 0;
    setTimeout('runSlideShow()', slideShowSpeed);
}
// é
