// JavaScript Document
<!--BEGIN Script
if (document.images) {       //if image object is available     
img1on = new Image();           // MouseOver Images
img1on.src = "images/canada_on_text.gif"; 
img2on = new Image();
img2on.src = "images/asia_on_text.gif";  
img3on = new Image();
img3on.src = "images/central_america_on_text.gif";
img4on = new Image();
img4on.src = "images/europe_on_text.gif";
img5on = new Image();
img5on.src = "images/caribbean_on_text.gif";
img6on = new Image();
img6on.src = "images/middle_east_on_text.gif";
img7on = new Image();
img7on.src = "images/south_america_on_text.gif";
img8on = new Image();
img8on.src = "images/mexico_on_text.gif";
img9on = new Image();
img9on.src = "images/oceania_on_text.gif";
img10on = new Image();
img10on.src = "images/russia_on_text.gif";


img1off = new Image();                  // MouseOut Images
img1off.src = "images/canada_text.gif"; 
img2off = new Image();          
img2off.src = "images/asia_text.gif";
img3off = new Image();
img3off.src = "images/central_america_text.gif";
img4off = new Image();
img4off.src = "images/europe_text.gif";
img5off = new Image();
img5off.src = "images/caribbean_text.gif";
img6off = new Image();
img6off.src = "images/middle_east_text.gif";
img7off = new Image();
img7off.src = "images/south_america_text.gif";
img8off = new Image();
img8off.src = "images/mexico_text.gif";
img9off = new Image();
img9off.src = "images/oceania_text.gif";
img10off = new Image();
img10off.src = "images/russia_text.gif";

img1ad = new Image();         
img1ad.src = "images/canada_map.gif";  // Secondary Images
img2ad = new Image();
img2ad.src = "images/asia_map.gif";
img3ad = new Image();
img3ad.src = "images/central_america_map.gif";  
img4ad = new Image();
img4ad.src = "images/europe_map.gif";
img5ad = new Image();
img5ad.src = "images/caribbean_map.gif";
img6ad = new Image();
img6ad.src = "images/middle_east_map.gif";
img7ad = new Image();
img7ad.src = "images/south_america_map.gif";
img8ad = new Image();
img8ad.src = "images/mexico_map.gif";
img9ad = new Image();
img9ad.src = "images/oceania_map.gif";
img10ad = new Image();
img10ad.src = "images/russia_map.gif";
  
}

function imgOn(imgName) {        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            document["holder"].src = eval(imgName + "ad.src"); // Added line!
        }}
                        
function imgOff(imgName) {        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
            document["holder"].src = "images/blank_map.gif";        }}