if (document.images)    {
         p1on = new Image; p1on.src = "../images/menu_de/about_on.gif"; p1off = new Image; p1off.src = "../images/menu_de/about.gif";
         p2on = new Image; p2on.src = "../images/menu_de/news_on.gif"; p2off = new Image; p2off.src = "../images/menu_de/news.gif";
         p3on = new Image; p3on.src = "../images/menu_de/offers_on.gif"; p3off = new Image; p3off.src = "../images/menu_de/offers.gif";
         p4on = new Image; p4on.src = "../images/menu_de/contacts_on.gif"; p4off = new Image; p4off.src = "../images/menu_de/contacts.gif";
         p5on = new Image; p5on.src = "images/lt_on.gif"; p5off = new Image; p5off.src = "images/lt.gif";
         p6on = new Image; p6on.src = "images/en_on.gif"; p6off = new Image; p6off.src = "images/en.gif";
         p7on = new Image; p7on.src = "../images/menu_de/news_on.gif"; p7off = new Image; p7off.src = "../images/menu_de/news_up.gif";
         p9on = new Image; p9on.src = "../images/menu_de/services_on.gif"; p9off = new Image; p9off.src = "../images/menu_de/services.gif";
}
function img_act(imgName) {
       
      if (document.images) {
        imgOn = eval(imgName + "on.src");
        document [imgName].src=imgOn;
     }
}
function img_inact(imgName) {
        if (document.images)  {
        imgOff = eval(imgName + "off.src");
        document [imgName].src=imgOff;
        }
}
