browserName = navigator.appName;

browserVer = parseInt ( navigator.appVersion );

version = "n2";

if ( browserName == "Netscape" && browserVer >= 3 ) version = "n3";

if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) version = "e4";

if (version == "n3" || version == "e4" ) {
    home_off = new Image ( 20, 23 );
    home_off.src = "images/off.gif";
    about_off = new Image ( 20, 23 );
    about_off.src = "images/off.gif";
    tours_off = new Image ( 20, 23 );
    tours_off.src = "images/off.gif";
    reserve_off = new Image ( 20, 23 );
    reserve_off.src = "images/off.gif";
    testimonials_off = new Image ( 20, 23 );
    testimonials_off.src = "images/off.gif";
    contact_off = new Image ( 20, 23 );
    contact_off.src = "images/off.gif";

    home_on = new Image ( 20, 23 );
    home_on.src = "images/on.gif";
    about_on = new Image ( 20, 23 );
    about_on.src = "images/on.gif";
    tours_on = new Image ( 20, 23 );
    tours_on.src = "images/on.gif";
    reserve_on = new Image ( 20, 23 );
    reserve_on.src = "images/on.gif";
    testimonials_on = new Image ( 20, 23 );
    testimonials_on.src = "images/on.gif";
    contact_on = new Image ( 20, 23 );
    contact_on.src = "images/on.gif";
}

function button_on ( imgName ) {
    if ( version == "n3" || version == "e4" ) {
        butOn = eval ( imgName + "_on.src" );
        document [imgName].src = butOn;
    }
}

function button_off ( imgName ) {
    if ( version == "n3" || version == "e4" ) {
        butOff = eval ( imgName + "_off.src" );
        document [imgName].src = butOff;
    }
}