
var fotoos;
var aantal;
var foto;
var num;
var nummer;
var tel;

function fotoloop(){
  fotoos=new Array();
  fotoos[0]=new Array();fotoos[0][0]="Hoge Doorn-fietsroute - maart 2005";fotoos[0][1]="Hoge Doorn-fietsroute";fotoos[0][2]="HogeDoornFietsroute_05";fotoos[0][3]="83";fotoos[1]=new Array();fotoos[1][0]="De Paulownia in onze tuin - voorjaar 2005";fotoos[1][1]="Paulownia";fotoos[1][2]="Paulownia";fotoos[1][3]="16";fotoos[2]=new Array();fotoos[2][0]="Tussen de Mandel en het kanaal Roeselare-Leie in Ingelmunster - zomer 2005";fotoos[2][1]="Tussen Mandel en kanaal";fotoos[2][2]="tussenDeMandelEnHetKanaalIngelmunster";fotoos[2][3]="44";fotoos[3]=new Array();fotoos[3][0]="Collectie - 2005";fotoos[3][1]="Collectie 2005";fotoos[3][2]="Collectie2005";fotoos[3][3]="22";fotoos[4]=new Array();fotoos[4][0]="Sneeuw in Heverlee - maart 2006";fotoos[4][1]="Sneeuw 2006";fotoos[4][2]="Sneeuw2006";fotoos[4][3]="23";fotoos[5]=new Array();fotoos[5][0]="De Doode Bemde - april 2007";fotoos[5][1]="De Doode Bemde";fotoos[5][2]="deDoodeBemde_07";fotoos[5][3]="50";fotoos[6]=new Array();fotoos[6][0]="Fietstocht Hageland - april 2007";fotoos[6][1]="Hageland";fotoos[6][2]="fietstochtHageland_07";fotoos[6][3]="46";fotoos[7]=new Array();fotoos[7][0]="In en rond Mechelen - juli 2007";fotoos[7][1]="Mechelen";fotoos[7][2]="fietstochtKempen_07";fotoos[7][3]="11";fotoos[8]=new Array();fotoos[8][0]="Sneeuw in Heverlee - maart 2008";fotoos[8][1]="Sneeuw 2008";fotoos[8][2]="sneeuwInHeverlee_08";fotoos[8][3]="67";fotoos[9]=new Array();fotoos[9][0]="Fietstocht Kempen, Westerlo en de abdij van Tongerlo - mei 2008";fotoos[9][1]="Westerlo";fotoos[9][2]="fietstochtKempen_08";fotoos[9][3]="13";  aantal=0;
  for (i=0;i<fotoos.length;i++){
    aantal+=eval(fotoos[i][3]);
  }
  foto=document.getElementById('fotoloop');
  floop();
}

function floop(){
  num=Math.floor(Math.random()*aantal)+1;
  tel=0;
  while (num>eval(fotoos[tel][3])){
    num-=eval(fotoos[tel][3]);
    tel++;
  }
  nummer=""+num;
  if (num<100)
    nummer="0"+nummer;
  if (num<10)
    nummer="0"+nummer;
  foto.src="../fotoalbum/_medialow/"+fotoos[tel][2]+"_"+nummer+".jpg";
  foto.alt=fotoos[tel][0];
  foto.title=fotoos[tel][0];
}
