<!--
ScriptOK = false;
// -->

<!--
Browser = navigator.appName;
Version = parseInt(navigator.appVersion);

if ( Version < 4 )
{
        ScriptOK = false;
}
else
{
        ScriptOK = true;
}

if (ScriptOK == true)
{
 
        N_people = new Image();
        N_people.src = "images/navi/people01.gif";

        S_people = new Image();
        S_people.src = "images/navi/people02.gif";

 //-----------------
 
        N_travel = new Image();
        N_travel.src = "images/navi/travel01.gif";

        S_travel = new Image();
        S_travel.src = "images/navi/travel02.gif";

 //-----------------

        N_art = new Image();
        N_art.src = "images/navi/art01.gif";

        S_art = new Image();
        S_art.src = "images/navi/art02.gif";

 //-----------------

        N_landscape = new Image();
        N_landscape.src = "images/navi/landscape01.gif";

        S_landscape = new Image();
        S_landscape.src = "images/navi/landscape02.gif";

 //-----------------

        N_vita = new Image();
        N_vita.src = "images/navi/vita01.gif";

        S_vita = new Image();
        S_vita.src = "images/navi/vita02.gif";

 //-----------------
 
        N_contact = new Image();
        N_contact.src = "images/navi/contact01.gif";

        S_contact = new Image();
        S_contact.src = "images/navi/contact02.gif";

 //----------------- 
 
}

function Sel(bild)
{
        if (ScriptOK == true)
        {
                document.images[bild].src = eval( "S_" + bild + ".src");
        }
}

function Desel(bild)
{
        if (ScriptOK == true)
        {
                document.images[bild].src = eval( "N_" + bild + ".src");
        }
}
// -->
