<!--

if (document.images) {

// about main
aboutfoundation_on = new Image();
aboutfoundation_on.src = "/images/about/aboutfoundation_on.gif";
aboutfoundation_off = new Image();
aboutfoundation_off.src = "/images/about/aboutfoundation_off.gif";
listofboard_on = new Image();
listofboard_on.src = "/images/about/listofboard_on.gif";
listofboard_off = new Image();
listofboard_off.src = "/images/about/listofboard_off.gif";
stafflist_on = new Image();
stafflist_on.src = "/images/about/stafflist_on.gif";
stafflist_off = new Image();
stafflist_off.src = "/images/about/stafflist_off.gif";
jobopp_on = new Image();
jobopp_on.src = "/images/about/jobopp_on.gif";
jobopp_off = new Image();
jobopp_off.src = "/images/about/jobopp_off.gif";



}

function imgAct(imgName) {
        if (document.images) {
        document[imgName].src = eval(imgName + "_on.src");
        }
}
function imgInact(imgName) {
        if (document.images) {
        document[imgName].src = eval(imgName + "_off.src");
        }
}

// -->

