// JavaScript Document
function showFact(mydiv,myexpander) {
	
	if (document.getElementById("factbody1").className == "factbody_hide") {
			document.getElementById("factbody1").className = "factbody_show";
			document.images["expander1"].src = "imagenes/map2.jpg";
			//alert("Cambiado a factbody_show");
	} else {
			document.getElementById("factbody1").className = "factbody_hide";
			document.images["expander1"].src = "imagenes/map1.jpg";
			//alert("Cambiado a factbody_hide");
	}
}
if (document.images)
{
  pic1 = new Image(85,80); 
  pic1.src = "images/map1.jpg"; 
}
