<!--


if (document.images)
{
 
 // Set up "on" images (show up onmouseover)
 pic1on= new Image();
 pic1on.src="http://www.cargillpersonalcare.com/_images/pc_map_north_america.gif";  
 pic2on= new Image(); 
 pic2on.src="http://www.cargillpersonalcare.com/_images/pc_map_europe.gif"; 
 pic3on = new Image();
 pic3on.src="http://www.cargillpersonalcare.com/_images/pc_map_asia_pacific.gif";
 pic4on = new Image();
 pic4on.src="http://www.cargillpersonalcare.com/_images/pc_map_latin_america.gif";
 pic5on = new Image();
 pic5on.src="http://www.cargillpersonalcare.com/_images/pc_map_middle_east.gif";
 pic6on = new Image();
 pic6on.src="http://www.cargillpersonalcare.com/_images/pc_map_africa.gif";

 // Set "off" images (onmouseout)    
 picoff= new Image();
 picoff.src="http://www.cargillpersonalcare.com/_images/pc_map_world.gif";


}

// Change the image
function changeImage(imgName,picobj)
{
  if (document.images)
  { 
	document.images[imgName].src= picobj.src;
  }
}

//-->
