// JavaScript Document
function email(str)
{ 
	str = str.replace("[%]","@"); 
	location.href=("mailto:"+str);
}

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

// Deactivate an image
function img_inact(imgName) 
{
    if (document.images) 
    {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
    }
}

if (document.images) 
{
	homeon = new Image();
    homeon.src = "../../../../../images/menu/home_on.gif";
    homeoff = new Image();
    homeoff.src = "../../../../../images/menu/home_off.gif";

    contacton = new Image();
    contacton.src = "../../../../../images/menu/contact_on.gif";
	contactoff = new Image();
    contactoff.src = "../../../../../images/menu/contact_off.gif";
				
    medewerkerson = new Image();
    medewerkerson.src = "../../../../../images/menu/medewerkers_on.gif";
    medewerkersoff = new Image();
    medewerkersoff.src = "../../../../../images/menu/medewerkers_off.gif";

	nieuwson = new Image();
    nieuwson.src = "../../../../../images/menu/nieuws_on.gif";
    nieuwsoff = new Image();
    nieuwsoff.src = "../../../../../images/menu/nieuws_off.gif";

	toepassingon = new Image();
    toepassingon.src = "../../../../../images/menu/toepassing_on.gif";
    toepassingoff = new Image();
    toepassingoff.src = "../../../../../images/menu/toepassing_off.gif";

	referentieon = new Image();
    referentieon.src = "../../../../../images/menu/referentie_on.gif";
    referentieoff = new Image();
    referentieoff.src = "../../../../../images/menu/referentie_off.gif";

	vacatureson = new Image();
    vacatureson.src = "../../../../../images/menu/vacatures_on.gif";
    vacaturesoff = new Image();
    vacaturesoff.src = "../../../../../images/menu/vacatures_off.gif";

	productenon = new Image();
    productenon.src = "../../../../../images/menu/producten_on.gif";
    productenoff = new Image();
    productenoff.src = "../../../../../images/menu/producten_off.gif";

	infoon = new Image();
    infoon.src = "../../../../../images/menu/documentatie_on.gif";
    infooff = new Image();
    infooff.src = "../../../../../images/menu/documentatie_off.gif";


	onson = new Image();
    onson.src = "../../../../../images/menu/info_on.gif";
    onsoff = new Image();
    onsoff.src = "../../../../../images/menu/info_off.gif";


}

function email(str)
{ 
	str = str.replace("[%]","@"); 
	location.href=("mailto:"+str);
}
