<!--
var backgroundArray=["fond_1.jpg", "fond_2.jpg", "fond_3.jpg", "fond_4.jpg", "fond_5.jpg", "fond_6.jpg"];
var interval=10;
var index=0;

function changeBackground() {
  Element.setStyle(document.body, {backgroundImage: "url("+document.location.protocol+"//"+document.location.host+"/themes/autoclub/fr/passion/"+backgroundArray[++index%backgroundArray.length]+")"});
  }

function configureBackgroundInterval() {
  backgroundArray.each(function(bg) {
    document.body.appendChild(new Element("img", {src: document.location.protocol+"//"+document.location.host+"/themes/autoclub/fr/passion/"+bg}).hide());
    });
  window.setInterval(changeBackground, interval*1000);
  Event.observe(window, "unload", function() {clearInterval();});
  }

Macallan.execute(configureBackgroundInterval);
//-->
