<!--
imagesNames = new Array("btnhome","btnabout","btncontact","btnworkshops","btnservices","btncurriculum","btncritrethlang","btnpartcollab","btnresources","btnmoreinfo");

directory = "graphics/";
browser = navigator.appName;
version = parseInt(navigator.appVersion);

if ( ((browser == "Netscape") && (version >= 3))
    || ((browser == "Microsoft Internet Explorer") && (version >= 4)) ) {
        browser = "netscape3+";
} else {
        browser = "other";
}

if (browser == "netscape3+") {

        for (i = 0; i < imagesNames.length; i++) {
                imageObj1 = imagesNames[i] + "1";
                temp = eval(imageObj1 + " = new Image()");
                temp.src = directory + imageObj1 + ".gif";

                imageObj2 = imagesNames[i] + "2";
                temp = eval(imageObj2 + " = new Image()");
                temp.src = directory + imageObj2 + ".gif";
        }
}

function doNothing() { };

function MouseOverImage(imgName) {
        if (browser == "netscape3+") {
                eval("document."  +  imgName  +  ".src = "  + imgName + "2.src");
        }
}

function MouseLeavesImage(imgName) {
        if (browser == "netscape3+") {
                eval("document."  +  imgName  +  ".src = "  +  imgName  +  "1.src");


        }
}

// -->