function image() {
};

image = new image();
number = 0;

// imageArray
image[number++] = "<img src='img/_e/giorno-memoria_01.jpg' width='220' height='220' alt='Il Giorno della Memoria' />"
image[number++] = "<img src='img/_e/giorno-memoria_02.jpg' width='220' height='220' alt='Il Giorno della Memoria' />"
image[number++] = "<img src='img/_e/giorno-memoria_03.jpg' width='220' height='220' alt='Il Giorno della Memoria' />"
image[number++] = "<img src='img/_e/giorno-memoria_04.jpg' width='220' height='220' alt='Il Giorno della Memoria' />"
image[number++] = "<img src='img/_e/giorno-memoria_05.jpg' width='220' height='220' alt='Il Giorno della Memoria' />"

increment = Math.floor(Math.random() * number);

document.write(image[increment]);

