<!--
// This script was supplied free by Hypergurl // http://www.hypergurl.com
<!--
    // JavaScript to interpolate random images into a page.
    var ic = 11;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] ="/images/img_com/visuel_home-02.jpg";
xoxo[1] ="/images/img_com/visuel_home-03.jpg";
xoxo[2] ="/images/img_com/visuel_home-10.jpg";
xoxo[3] ="/images/img_com/visuel_home-11.jpg";
xoxo[4] ="/images/img_com/visuel_home-12.jpg";
xoxo[5] ="/images/img_com/visuel_home-14.jpg";
xoxo[6] ="/images/img_com/visuel_home-15.jpg";
xoxo[7] ="/images/img_com/visuel_home-18.jpg";
xoxo[8] ="/images/img_com/visuel_home-21.jpg";
xoxo[9] ="/images/img_com/visuel_home-26.jpg";
xoxo[10] ="/images/img_com/visuel_home-27.jpg";
 
function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1)); 
else { var now = new Date(); 
return (now.getTime() / 1000) % range; 
} 
} 
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
 
// -->
