var wimages = new Array();
wimages[0] = new Image();
wimages[0].src = '/cutting_and_bending/includes/contact/img/contactmap_world_europe_on.png';
wimages[1] = new Image();
wimages[1].src = '/cutting_and_bending/includes/contact/img/contactmap_world_asia_on.png';
wimages[2] = new Image();
wimages[2].src = '/cutting_and_bending/includes/contact/img/contactmap_world_africa_on.png';
wimages[3] = new Image();
wimages[3].src = '/cutting_and_bending/includes/contact/img/contactmap_world_northamerica_on.png';
wimages[4] = new Image();
wimages[4].src = '/cutting_and_bending/includes/contact/img/contactmap_world_southamerica_on.png';

function activateCountry(index) {
  origCountry = document.worldmap.src;
  document.worldmap.src = wimages[index].src;
}

function deactivateCountry() {
  if (origCountry != null) {
    document.worldmap.src = origCountry;
  }
}

var origCountry;

