function rand_number(n)
{
var x;
x=Math.round(Math.random()*100);
x%=n;
return x;
}

function boucle_images()
{
var i;
var intervalle=7000; <!-- temps en millisecondes entre deux affichages 5000 <==> 5 secondes -->
var img = new Array()
img[0]='<a href="http://www.deco-noel.eu/bougies-decoratives-deco-noel.htm"><img src="photos/bougie-decoration-noel-reveillon.png" width="150" height="120" border="0" title="Bougies decoration noel et reveillon" alt="Bougies decoration noel et reveillon" /></a>';
img[1]='<a href="http://www.deco-noel.eu/nos-cadeaux-pour-vos-invites-deco-noel.htm"><img src="photos/cadeau-invites-reveillon-noel.png" width="150" height="120" border="0" title="Cadeaux invites reveillon et noel" alt="Cadeaux invites reveillon et noel" /></a>';
img[2]='<a href="http://www.deco-noel.eu/sapins-de-noel-naturels-deco-noel.htm"><img src="photos/sapin-nordmann-livre-a-domicile.png" width="150" height="120" border="0" title="Sapin de Noel naturel livre a la date de votre choix !" alt="Sapin de Noel naturel livre a la date de votre choix !" /></a>';

var nombre_total_images = 3; <!-- nombre total d'images (ici 0,1,2 ==> 3) -->
var i=rand_number(nombre_total_images); 
document.getElementById('boucle').innerHTML=img[i];
setTimeout("boucle_images()",intervalle);
}


function boucle_images2()
{
var i;
var intervalle=10000; <!-- temps en millisecondes entre deux affichages 5000 <==> 5 secondes -->
var img = new Array()
img[0]='<a href="http://www.deco-noel.eu/boules-decoration-sapin-deco-noel.htm"><img src="photos/boules-guirlandes-de-noel.png" width="155" height="155" border="0" title="Boules guirlandes de noel decoration sapin" alt="Boules guirlandes de noel decoration sapin" /></a>';
img[1]='<a href="http://www.deco-noel.eu/decoration-de-table-deco-noel.htm"><img src="photos/chemin-de-table-noel-reveillon.png" width="155" height="155" border="0" title="Chemins de table noel et reveillon" alt="Chemins de table noel et reveillon" /></a>';
img[2]='<a href="http://www.deco-noel.eu/vaisselle-cocktail-buffet-mise-en-bouche-deco-noel.htm"><img src="photos/vaisselle-reveillon.png" width="155" height="155" border="0" title="Vaisselle de fete, cocktail" alt="Vaisselle de fete, cocktail" /></a>';
var nombre_total_images = 3; <!-- nombre total d'images (ici 0,1,2 ==> 3) -->
var i=rand_number(nombre_total_images); 
document.getElementById('boucle2').innerHTML=img[i];
setTimeout("boucle_images2()",intervalle);
}
