function ListePhoto(images,commentaires,depart)
{
    this.images = images;
    this.commentaires = commentaires;
    this.actuelle = depart;
    
    this.photoPrecedente = photoPrecedente;
    this.photoSuivante = photoSuivante;
    this.photoActualiser = photoActualiser;
}

function photoActualiser(photoDest, commentaireDest)
{
    if (commentaireDest)
        commentaireDest.innerHTML = this.commentaires[this.actuelle];
        
    photoDest.src = this.images[this.actuelle];
}

function photoPrecedente(photoDest, commentaireDest)
{
    if (--this.actuelle < 0)
        this.actuelle = this.images.length-1;

    if (commentaireDest)
        commentaireDest.innerHTML = this.commentaires[this.actuelle];
        
    photoDest.src = this.images[this.actuelle];
}

function photoSuivante(photoDest, commentaireDest)
{
    if (++this.actuelle > this.images.length-1)
        this.actuelle = 0;

    if (commentaireDest)
        commentaireDest.innerHTML = this.commentaires[this.actuelle];
        
    photoDest.src = this.images[this.actuelle];
}