<!--



// Percorso della cartella delle immagini
var pre="muri/"

// Elenco foto
var foto=new Array()
foto[0]=pre+'001.jpg'
foto[1]=pre+'002.jpg'
foto[2]=pre+'003.jpg'
foto[3]=pre+'004.jpg'
foto[4]=pre+'005.jpg'
foto[5]=pre+'006.jpg'


// Elenco didascalie
var did=new Array()
did[0]=''
did[1]=''
did[2]=''
did[3]=''
did[4]=''
did[5]=''
did[6]=''
did[7]=''
did[8]=''
did[9]=''
did[10]=''
did[11]=''
did[12]=''
did[13]=''








// NON MODIFICARE SOTTO QUESTA LINEA //////////

i=0

function showImg() {
	document.getElementById("foto").src=foto[i]
	document.getElementById("foto").alt=did[i]
	document.getElementById("titolo").innerHTML=did[i]
}

function nextImg() {
	i++
	if (i>=foto.length) {i=0}
	showImg()
}
	
function prevImg() {
	i--
	if (i<0) {i=foto.length - 1}
	showImg()
}
	
function randImg() {
	i=Math.floor(Math.random() * (foto.length))
	showImg()
}

//-->
