historyPhotos = new Array()totalPhotos = 4for (i=0;i<totalPhotos;i++) {	historyPhotos[i] = "foto_" + i + ".jpg"}photoPath = "images_history/"function getPhoto() {	randomPhoto = Math.floor ((Math.random() * historyPhotos.length))}
