if (document.images)
{
introductieon= new Image(94,18);
introductieon.src="images/btn_introductie_over.gif";
introductieoff= new Image(94,18);
introductieoff.src="images/btn_introductie.gif";

tandheelkundeon= new Image(94,23);
tandheelkundeon.src="images/btn_tandheelkunde_over.gif";
tandheelkundeoff= new Image(94,23);
tandheelkundeoff.src="images/btn_tandheelkunde.gif";

vragenon= new Image(94,23);
vragenon.src="images/btn_vragen_over.gif";
vragenoff= new Image(94,23);
vragenoff.src="images/btn_vragen.gif";

contacton= new Image(94,9);
contacton.src="images/btn_contact_over.gif";
contactoff= new Image(94,9);
contactoff.src="images/btn_contact.gif";
}

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

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


