status_text = new Array(15);

status_text[0] = "Willkommen bei der Buchbinderei Probst";
status_text[1] = "Binden und Reparieren von Büchern";
status_text[2] = "Verarbeitung von Zeitschriften zu Büchern";
status_text[3] = "Wir binden Ihre Diplomarbeit";
status_text[4] = "Verkauf und Aufzug von Landkarten";
status_text[5] = "Der Hermannsweg";
status_text[6] = "Was Sie ansonsten noch bei uns bekommen können";
status_text[7] = "Hier erhalten sie unsere Adresse und eine Anfahrtskizze";
status_text[8] = "Bildbetrachter für unsere Fotos";


if (document.images) {

     banner      = new Image(1300,60);   banner.src = "./img/banner3.gif";
     banner_ende = new Image(30,60);     banner_ende.src = "./img/banner3_ende.gif";

     hintergrund = new Image(175,24);     hintergrund.src ="./img/higru_schatten24.gif";
     menue_kopf  = new Image(140,10);     menue_kopf.src ="./img/menue-kopf.gif";
     menue_ende  = new Image(140,20);     menue_ende.src ="./img/menue-ende.gif";
     menue_spacer6 = new Image(140,6);   menue_spacer6.src ="./img/menue-spacer6.gif";
     menue_spacer24 = new Image(140,24);   menue_spacer24.src ="./img/menue-spacer24.gif";

     i1akt     = new Image(160,24);   i1akt.src = "./img/start3.gif";
     i2aus     = new Image(160,24);   i2aus.src = "./img/buecher1.gif";
     i3aus     = new Image(160,24);   i3aus.src = "./img/karten1.gif";
     i4aus     = new Image(160,24);   i4aus.src = "./img/n_hweg_off.gif";
     i5aus     = new Image(160,24);   i5aus.src = "./img/bildergalerie1.gif";
     i6aus     = new Image(160,24);   i6aus.src = "./img/sonstig1.gif";
     i7aus     = new Image(160,24);   i7aus.src = "./img/adresse1.gif";

     i1aus     = new Image(160,24);   i1aus.src = "./img/start1.gif";

     i1an      = new Image(160,24);   i1an.src  = "./img/start2.gif";
     i2an      = new Image(160,24);   i2an.src  = "./img/buecher2.gif";
     i3an      = new Image(160,24);   i3an.src  = "./img/karten2.gif";
     i4an      = new Image(160,24);   i4an.src  = "./img/n_hweg_on.gif";
     i5an      = new Image(160,24);   i5an.src  = "./img/bildergalerie2.gif";
     i6an      = new Image(160,24);   i6an.src  = "./img/sonstig2.gif";
     i7an      = new Image(160,24);   i7an.src  = "./img/adresse2.gif";

     i2akt     = new Image(160,24);   i2akt.src = "./img/buecher3.gif";
     i3akt     = new Image(160,24);   i3akt.src = "./img/karten3.gif";
     i4akt     = new Image(160,24);   i4akt.src = "./img/n_hweg_active.gif";
     i5akt     = new Image(160,24);   i5akt.src = "./img/bildergalerie3.gif";
     i6akt     = new Image(160,24);   i6akt.src = "./img/sonstig3.gif";
     i7akt     = new Image(160,24);   i7akt.src = "./img/adresse3.gif";
    }

function img_act(imgNr) {

    status = status_text[imgNr];

    if (imgNr == 0) return true

    imgID = "i"+imgNr;
    if (document.images)
          {imgOn = eval(imgID + "an.src");
           document [imgID].src = imgOn;}

    return true;
}

function img_inact(imgNr){

    status = status_text[0];

    if (imgNr == 0) return true

    imgID = "i"+imgNr;
    if (document.images)
          {imgOff = eval(imgID + "aus.src");
           document [imgID].src = imgOff;}

    return true;
}
