function hideInfo(countryName){
	stress = setTimeout(closeInfo, 500);
	/*
	var mainImg  = document.getElementById('mainMap');
	mainImg.src = 'images/map.gif';
	var divInfo = document.getElementById('mapInfo' + countryName);
	divInfo.style.display = 'none';
	*/
}

function showInfo(countryName){
	clearTimeout(stress);
	if (activeCountry) closeInfo();
	
	var mainImg  = document.getElementById('mainMap');
	mainImg.src = 'images/map' + countryName + '.gif';
	var divInfo = document.getElementById('mapInfo' + countryName);
	divInfo.style.display = 'block';
	
	activeCountry = countryName;
}

function closeInfo()
{
	var countryName = activeCountry;
	
	var mainImg  = document.getElementById('mainMap');
	mainImg.src = 'images/map.gif';
	var divInfo = document.getElementById('mapInfo' + countryName);
	divInfo.style.display = 'none';
}

var stress;
var activeCountry;
