if (document.images) {      

img01on = new Image();		
img01on.src = "../images/layout/menu-french-a.gif";
img02on = new Image();
img02on.src = "../images/layout/menu-german-a.gif";
img03on = new Image();
img03on.src = "../images/layout/menu-port-a.gif";
img04on = new Image();
img04on.src = "../images/layout/menu-russian-a.gif";
img05on = new Image();
img05on.src = "../images/layout/menu-spanish-a.gif";
img06on = new Image();
img06on.src = "../images/layout/menu-other-a.gif";

img01off = new Image();		  	
img01off.src = "../images/layout/menu-french.gif";
img02off = new Image();          
img02off.src = "../images/layout/menu-german-a.gif";
img03off = new Image();
img03off.src = "../images/layout/menu-port.gif";
img04off = new Image();
img04off.src = "../images/layout/menu-russian.gif";
img05off = new Image();
img05off.src = "../images/layout/menu-spanish.gif";
img06off = new Image();
img06off.src = "../images/layout/menu-other.gif";

img01ad = new Image();		
img01ad.src = "../images/layout/image-french.jpg";
img02ad = new Image();		
img02ad.src = "../images/layout/image-german.jpg"; 
img03ad = new Image();		
img03ad.src = "../images/layout/image-port.jpg"; 
img04ad = new Image();		
img04ad.src = "../images/layout/image-russian.jpg"; 
img05ad = new Image();		
img05ad.src = "../images/layout/image-spanish.jpg";  
img06ad = new Image();		
img06ad.src = "../images/layout/image-other.jpg";
}

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
 document["holder"].src = eval(imgName + "ad.src");
}}
			
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
   document["holder"].src = "../images/layout/image-german.jpg";  
  }
}