if (parseInt(navigator.appVersion) >= 3) {

 button_kunststoffverarbeitung_off = new Image;
 button_kunststoffverarbeitung_off.src = "images/button_kunststoffverarbeitung_off.gif";
 button_kunststoffverarbeitung_on = new Image;
 button_kunststoffverarbeitung_on.src = "images/button_kunststoffverarbeitung_on.gif";

 button_werkzeug_formenbau_off = new Image;
 button_werkzeug_formenbau_off.src = "images/button_werkzeug_formenbau_off.gif";
 button_werkzeug_formenbau_on = new Image;
 button_werkzeug_formenbau_on.src = "images/button_werkzeug_formenbau_on.gif";

 button_entwicklung_modelbau_off = new Image;
 button_entwicklung_modelbau_off.src = "images/button_entwicklung_modelbau_off.gif";
 button_entwicklung_modelbau_on = new Image;
 button_entwicklung_modelbau_on.src = "images/button_entwicklung_modelbau_on.gif";

 button_maschinenpark_off = new Image;
 button_maschinenpark_off.src = "images/button_maschinenpark_off.gif";
 button_maschinenpark_on = new Image;
 button_maschinenpark_on.src = "images/button_maschinenpark_on.gif";

 button_kontakt_off = new Image;
 button_kontakt_off.src = "images/button_kontakt_off.gif";
 button_kontakt_on = new Image;
 button_kontakt_on.src = "images/button_kontakt_on.gif";

}

 function img_act(img_name) {
      if (parseInt(navigator.appVersion) >= 3) {
           img_on = eval(img_name + "_on.src");
           document [img_name].src = img_on;
      }
 }


 function img_inact(img_name) {
      if (parseInt(navigator.appVersion) >= 3) {
           img_off = eval(img_name + "_off.src");
           document [img_name].src = img_off;
      }
 }

