function mouseOverIcoon()
{
document.getElementById("icoonSJK").src ="/menuplaatjes/icoon-rose.gif"
}
function mouseOutIcoon()
{
document.getElementById("icoonSJK").src ="/menuplaatjes/icoon-2.gif"
}

function mouseOverContact()
{
document.getElementById("contactSJK").src ="/menuplaatjes/icoon-contact-opnemen-rose.gif"
}
function mouseOutContact()
{
document.getElementById("contactSJK").src ="/menuplaatjes/icoon-contact-opnemen.gif"
}


if(document.images)
{
  var image_array = new Array();
	
  // path to the directory with images
  var path = '../menuplaatjes/';

  // enumeration of the "active" images
  image_array[0] = path + "icoon-rose.gif";
  image_array[1] = path + "icoon-contact-opnemen-rose.gif";

  var preload_image = new Array ();
 
  for(var i=0; i<image_array.length; i++)
  {
    preload_image[i]= new Image();
    preload_image[i].src = image_array[i];
  }
}
