/* Javascript Random Image Generator for http://www.steppingstonesforafrica.org */
    
    var teller = 0;

    var i = new Array();

    var choice = 0;

   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts1.jpg";
   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts2.jpg";
   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts3.jpg";
   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts4.jpg";
   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts5.jpg";
   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts6.jpg";
   i[teller++] = "http://www.nathis.nu/wp-content/themes/k2/images/fotorechts7.jpg";

   
   function pickRandom(range) {
       if (Math.random)
           return Math.round(Math.random() * (range-1));
       else {
           var now = new Date();
           return (now.getTime() / 1000) % range;
       }
   }

function setpicri(){
  var choice = pickRandom(teller);
  var the_thing = document.getElementById("show");
  the_thing.src= i[choice];
}
