/*jslint white: true, onevar: true, browser: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, strict: true, newcap: true, immed: true, indent: 2 */
"use strict";

//Constructeur
function BanniereTournante() {
  var indexBanniereEnCours = 0, bannieres = [];

  this.ajouteBanniere = function (image, adresse) {
    var banniere = {};
    banniere.image = image;
    banniere.adresse = adresse;
    bannieres[bannieres.length] = banniere;
  };

  this.demarre = function (idBanniereImage, idBanniereAncre) {
    this.elementImage = document.getElementById(idBanniereImage);
    this.elementAncre = document.getElementById(idBanniereAncre);
    this.dors();
  };

  this.met_a_jour_banniere_affichee = function () {
    this.elementImage.setAttribute("src",  bannieres[indexBanniereEnCours].image);
    this.elementAncre.setAttribute("href", bannieres[indexBanniereEnCours].adresse);
  };

  this.rotationImage = function () {
    indexBanniereEnCours += 1;
    if (indexBanniereEnCours >= bannieres.length) {
      indexBanniereEnCours = 0;
    }
    this.met_a_jour_banniere_affichee();
    this.dors();
  };

  this.dors = function () {
    var laBanniereTournanteQuiDortPuisSeReveille = this;
    setTimeout(function () {
      laBanniereTournanteQuiDortPuisSeReveille.rotationImage();
    }, 10000);
  };
}

var banniereTournante = new BanniereTournante();
banniereTournante.ajouteBanniere('http://meluzine.org/partenaires/vignettegnrale1.jpg', 'http://bouquivores-editions.over-blog.com/');
banniereTournante.ajouteBanniere('http://banniere.reussissonsensemble.fr/view.asp?ref=342463&site=4409&b=1', 'http://clic.reussissonsensemble.fr/click.asp?ref=342463&site=4409&type=b1&bnb=1');
banniereTournante.demarre('banniere_image', 'banniere_ancre');

