// JavaScript Document
this.fotoCorrente = 0;
this.visualeCorrente = 0;
this.slideShowInProgress = false;
this.intervallo=3000;

function cambiaVisuale(v){
	if(this.slideShowInProgress == true){
		this.slideShowInProgress = false;
	}
	if(v != this.visualeCorrente){
		if(v == 0){
			if(parent.mainFrame.location.href = "mainFrame.html"){
				this.visualeCorrente = 0;
				/*document.icona.src = "http://www.bagolando.com/files/slide.gif";*/
				this.fotoCorrente = 0;
			}
		}
		else if(v == 1){
			if(parent.mainFrame.location.href = "slide.html"){
				this.visualeCorrente = 1;
				/*document.icona.src = "http://www.bagolando.com/files/icone.gif";*/
			}
		}
	}
}

function cambiaFoto(p){
	this.fotoCorrente = p;
	if(this.visualeCorrente == 0){
		cambiaVisuale(1);
	}
}
