<!--
// -->

        browserName = navigator.appName;
        browserVer = parseInt(navigator.appVersion);
        if (browserName == "Netscape" && browserVer >= 3) {
                version = "n3";
        }
        else {
                if (browserName == "Microsoft Internet Explorer" && browserVer >= 3) {
                        version = "n3";
                }
                else {
                        version = "n2";
                }
        }
        if (version == "n3") {
                home = new Image();
                home.src = "images/home.gif";
                home_over = new Image();
                home_over.src = "images/home_over.gif";

                about_us = new Image();
                about_us.src = "images/about_us.gif";
                about_us_over = new Image();
                about_us_over.src = "images/about_us_over.gif";

                certification = new Image();
                certification.src = "images/certification.gif";
                certification_over = new Image();
                certification_over.src = "images/certification_over.gif";

                contacts = new Image();
                contacts.src = "images/contacts.gif";
                contacts_over = new Image();
                contacts_over.src = "images/contacts_over.gif";

                products = new Image();
                products.src = "images/products.gif";
                products_over = new Image();
                products_over.src = "images/products_over.gif";

                prices = new Image();
                prices.src = "images/price_list.gif";
                prices_over = new Image();
                prices_over.src = "images/price_list_over.gif";

                workbench = new Image();
                workbench.src = "images/workbench.gif";
                workbench_over = new Image();
                workbench_over.src = "images/workbench_over.gif";

                tonysokol = new Image();
                tonysokol.src = "images/tonysokol.gif";
                tonysokol_over = new Image();
                tonysokol_over.src = "images/tonysokol_over.gif";

        }
function img_over(imgName) {
    if (version == "n3") {
                imgOver = eval(imgName + "_over.src");
                document [imgName].src = imgOver;

    }
    else {
        return;
    }
}
function img_out(imgName) {
    if (version == "n3") {
                imgOut = eval(imgName + ".src");
                document [imgName].src = imgOut;
    }
    else {
        return;
    }
}
        
