<!--

home_off          = new Image;
home_on           = new Image;

info_off          = new Image;
info_on           = new Image;

menu_off          = new Image;
menu_on           = new Image;

contacts_off          = new Image;
contacts_on           = new Image;

links_off          = new Image;
links_on           = new Image;

sitemap_off          = new Image;
sitemap_on           = new Image;

home_off.src  = "images/buttons/home_off.jpg";
home_on.src  = "images/buttons/home_on.jpg";

info_off.src  = "images/buttons/info_off.jpg";
info_on.src  = "images/buttons/info_on.jpg";

menu_off.src  = "images/buttons/menu_off.jpg";
menu_on.src  = "images/buttons/menu_on.jpg";

links_off.src  = "images/buttons/links_off.jpg";
links_on.src  = "images/buttons/links_on.jpg";

sitemap_off.src  = "images/buttons/sitemap_off.jpg";
sitemap_on.src  = "images/buttons/sitemap_on.jpg";

contacts_off.src  = "images/buttons/contacts_off.jpg";
contacts_on.src  = "images/buttons/contacts_on.jpg";

function mover(plaatje)
{
	document.images[plaatje].src = eval(plaatje+"_on.src");
}

function mout(plaatje)
{
	document.images[plaatje].src = eval(plaatje+"_off.src");
}

 -->

