/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 zondag 23 april 2006 1:04:17
 menu
 - - - - - - - - - - - - - - - - - - - - - - - */



  var aryImages = new Array(4);

  aryImages[0] = "images/mouseover_home.gif";
  aryImages[1] = "images/mouseover_exposities.gif";
  aryImages[2] = "images/mouseover_carlawiersma.gif";
  aryImages[3] = "images/mouseout.gif";


  for (i=0; i < 2; i++) {
    var preload = new Image();
    preload.src = aryImages[i];
  }

  function swap(imgIndex,name) {
    document[name].src = aryImages[imgIndex];
  }


