var a_images;
function dl_loadImages()
{
	a_images=new Array();
	a_images["overlay"]=new Image();
	a_images["overlay"].src="/assets/images/dl-map/overlay.gif";
	a_images["africaoverlay"]=new Image();
	a_images["africaoverlay"].src="/assets/images/dl-map/africaoverlay.gif";
	a_images["africaoverlay_text"]="Africa";
	a_images["asiaoverlay"]=new Image();
	a_images["asiaoverlay"].src="/assets/images/dl-map/asiaoverlay.gif";
	a_images["asiaoverlay_text"]="Asia";
	a_images["canadaoverlay"]=new Image();
	a_images["canadaoverlay"].src="/assets/images/dl-map/canadaoverlay.gif";
	a_images["canadaoverlay_text"]="Canada";
	a_images["europeoverlay"]=new Image();
	a_images["europeoverlay"].src="/assets/images/dl-map/europeoverlay.gif";
	a_images["europeoverlay_text"]="Europe";
	a_images["mexicocaribbeanoverlay"]=new Image();
	a_images["mexicocaribbeanoverlay"].src="/assets/images/dl-map/mexicocaribbeanoverlay.gif";
	a_images["mexicocaribbeanoverlay_text"]="Mexico and the Caribbean Region";
	a_images["middleeastoverlay"]=new Image();
	a_images["middleeastoverlay"].src="/assets/images/dl-map/middleeastoverlay.gif";
	a_images["middleeastoverlay_text"]="Middle East";
	a_images["oceaniaoverlay"]=new Image();
	a_images["oceaniaoverlay"].src="/assets/images/dl-map/oceaniaoverlay.gif";
	a_images["oceaniaoverlay_text"]="Oceania";
	a_images["southamericaoverlay"]=new Image();
	a_images["southamericaoverlay"].src="/assets/images/dl-map/southamericaoverlay.gif";
	a_images["southamericaoverlay_text"]="South America";
	a_images["usaoverlay"]=new Image();
	a_images["usaoverlay"].src="/assets/images/dl-map/usaoverlay.gif";
	a_images["usaoverlay_text"]="United States";
}

function mOver_Area(s_prefix)
{
	if(a_images[s_prefix+"overlay"]!=null)
	{
		document.getElementById("img_overlay").src=a_images[s_prefix+"overlay"].src;
 	}
 	if(a_images[s_prefix+"overlay_text"]!=null)
 	{
 		document.getElementById("spn_overlayText").innerHTML=a_images[s_prefix+"overlay_text"];
  	}else{
  	    document.getElementById("spn_overlayText").innerHTML="&nbsp;";
   	}
}
