/* Preload menu images */
if (document.images) {
	welkomon = new Image();
	welkomon.src = "images/button_welkom_o.gif";
	welkomoff = new Image();
	welkomoff.src = "images/button_welkom.gif";

	prijzenon = new Image();
	prijzenon.src = "images/button_prijzen_o.gif";
	prijzenoff = new Image();
	prijzenoff.src = "images/button_prijzen.gif";

	spoedopleidingon = new Image();
	spoedopleidingon.src = "images/button_spoedopleiding_o.gif";
	spoedopleidingoff = new Image();
	spoedopleidingoff.src = "images/button_spoedopleiding.gif";

	lesautoon = new Image();
	lesautoon.src = "images/button_lesauto_o.gif";
	lesautooff = new Image();
	lesautooff.src = "images/button_lesauto.gif";

	geslaagdon = new Image();
	geslaagdon.src = "images/button_geslaagd_o.gif";
	geslaagdoff = new Image();
	geslaagdoff.src = "images/button_geslaagd.gif";

	contacton = new Image();
	contacton.src = "images/button_contact_o.gif";
	contactoff = new Image();
	contactoff.src = "images/button_contact.gif";
}

function On(imgName) {
	if (document.images) {
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
	}
}

function Off(imgName) {
	if (document.images) {
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
	}
}


