//imageroot = "/outputDev/images/"
imageroot = "/images/"

Home_on = new Image();
Home_on.src = imageroot + "Buttons/Home_on.gif";
Home_off = new Image();
Home_off.src = imageroot + "Buttons/Home_off.gif";

CompanyOverview_on = new Image();
CompanyOverview_on.src = imageroot + "Buttons/CompanyOverview_on.gif";
CompanyOverview_off = new Image();
CompanyOverview_off.src = imageroot + "Buttons/CompanyOverview_off.gif";

Careers_on = new Image();
Careers_on.src = imageroot + "Buttons/Careers_on.gif";
Careers_off = new Image();
Careers_off.src = imageroot + "Buttons/Careers_off.gif";

Capabilities_on = new Image();
Capabilities_on.src = imageroot + "Buttons/Capabilities_on.gif";
Capabilities_off = new Image();
Capabilities_off.src = imageroot + "Buttons/Capabilities_off.gif";

TPS_on = new Image();
TPS_on.src = imageroot + "Buttons/TPS_on.gif";
TPS_off = new Image();
TPS_off.src = imageroot + "Buttons/TPS_off.gif";

Contact_on = new Image();
Contact_on.src = imageroot + "Buttons/Contact_on.gif";
Contact_off = new Image();
Contact_off.src = imageroot + "Buttons/Contact_off.gif";

Impressum_on = new Image();
Impressum_on.src = imageroot + "Buttons/Impressum_on.gif";
Impressum_off = new Image();
Impressum_off.src = imageroot + "Buttons/Impressum_off.gif";

Links_on = new Image();
Links_on.src = imageroot + "Buttons/Links_on.gif";
Links_off = new Image();
Links_off.src = imageroot + "Buttons/Links_off.gif";

Location_on = new Image();
Location_on.src = imageroot + "Buttons/Location_on.gif";
Location_off = new Image();
Location_off.src = imageroot + "Buttons/Location_off.gif";

Meds_on = new Image();
Meds_on.src = imageroot + "Buttons/Meds_on.gif";
Meds_off = new Image();
Meds_off.src = imageroot + "Buttons/Meds_off.gif";

Processes_on = new Image();
Processes_on.src = imageroot + "Buttons/Processes_on.gif";
Processes_off = new Image();
Processes_off.src = imageroot + "Buttons/Processes_off.gif";

Quality_on = new Image();
Quality_on.src = imageroot + "Buttons/Quality_on.gif";
Quality_off = new Image();
Quality_off.src = imageroot + "Buttons/Quality_off.gif";

function swap(imgID,imgName) {
  if (document.images) {
    document.images[imgID].src = eval(imgName + ".src");
  }
}