var InfoText = new Array;
var Bilder = new Array;
InfoText[0] = "Ihr Anliegen";
InfoText[1] = "Unsere Lösung";
InfoText[2] = "Entwicklung";
InfoText[3] = "Unternehmen";
InfoText[4] = "Referenzen";
InfoText[5] = "Kontakt";

Bilder[0] = new Array("images/ihranliegenT.gif", "images/ihranliegen.gif");
Bilder[1] = new Array("images/unsereloesungT.gif", "images/unsereloesung.gif");
Bilder[2] = new Array("images/entwicklungT.gif", "images/entwicklung.gif");
Bilder[3] = new Array("images/unternehmenT.gif", "images/unternehmen.gif");
Bilder[4] = new Array("images/referenzenT.gif", "images/referenzen.gif");
Bilder[5] = new Array("images/kontaktT.gif", "images/kontakt.gif");

var aktMP_Bild = null;
var aktMP_Id = -1;

function MenuClick(id, bild) {
    if(aktMP_Bild != null) {
        aktMP_Bild.src = Bilder[aktMP_Id][0];
    }
    aktMP_Bild = bild;
    aktMP_Id = id;
}

function MenuMouseOver(id, bild) {
    window.status = InfoText[id];
    bild.src = Bilder[id][1];
    
    return true;
}

function MenuMouseOut(id, bild) {
    window.status = "";
    
    if(aktMP_Bild != bild) {
        bild.src = Bilder[id][0];
    }
    return true;
}