<!--
if (document.images) {


ab_on = new Image();           // Active images
ab_on.src = "images/about_on.gif";  
mi_on = new Image(); 
mi_on.src = "images/mission_on.gif";  
ga_on = new Image();
ga_on.src = "images/gallery_on.gif";
se_on = new Image();
se_on.src = "images/services_on.gif";
ra_on = new Image();
ra_on.src = "images/jobs_on.gif";
pa_on = new Image();
pa_on.src = "images/partners_on.gif";
co_on = new Image();
co_on.src = "images/contact_on.gif";

ab_off = new Image();           // Inactive images
ab_off.src = "images/about_off.gif";  
mi_off = new Image(); 
mi_off.src = "images/mission_off.gif";  
ga_off = new Image();
ga_off.src = "images/gallery_off.gif";
se_off = new Image();
se_off.src = "images/services_off.gif";
ra_off = new Image();
ra_off.src = "images/jobs_off.gif";
pa_off = new Image();
pa_off.src = "images/partners_off.gif";
co_off = new Image();
co_off.src = "images/contact_off.gif";
}

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_on.src");
        }
}

function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_off.src");
        }
}

//-->