<!--
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
        if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "n3";
        else version = "n2";
        if (browserName == "Netscape" && browserVer >= 3) version = "n3";

        if (version == "n3") {
        current_on = new Image();
        current_on.src = "../images/i_nav_current_on.gif";
		archived_on = new Image();
        archived_on.src = "../images/i_nav_archived_on.gif";
		advertising_on = new Image();
        advertising_on.src = "../images/i_nav_advertising_on.gif";
		about_on = new Image();
        about_on.src = "../images/i_nav_about_on.gif";
		contact_on = new Image();
        contact_on.src = "../images/i_nav_contact_on.gif";
		home_on = new Image();
        home_on.src = "../images/i_nav_home_on.gif";
                                
        current_off = new Image();
        current_off.src = "../images/i_nav_current_off.gif";
		archived_off = new Image();
        archived_off.src = "../images/i_nav_archived_off.gif";
		advertising_off = new Image();
        advertising_off.src = "../images/i_nav_advertising_off.gif";
		about_off = new Image();
        about_off.src = "../images/i_nav_about_off.gif";
		contact_off = new Image();
        contact_off.src = "../images/i_nav_contact_off.gif";
		home_off = new Image();
        home_off.src = "../images/i_nav_home_off.gif";
        }

function img_act(imgName) {
        if (version == "n3") {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
}
function img_inact(imgName) {
        if (version == "n3") {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }
}
// -->

