function showSubMap(arg){
var ulList = document.getElementsByTagName('ul');
	
	if(document.getElementById('im_' + arg).title == 'Развернуть'){
	for(i = 0; i < ulList.length; i++){
		if(ulList[i].className == 'sub') ulList[i].style.display = 'none';
	}
	document.getElementById('map_' + arg).style.display = 'block';
	document.getElementById('im_' + arg).title = 'Свернуть';
	return;
	}
	if(document.getElementById('im_' + arg).title == 'Свернуть'){
	document.getElementById('map_' + arg).style.display = 'none';
	document.getElementById('im_' + arg).title = 'Развернуть';
	return;
	}
}

function showSubMap2(arg){
var ulList = document.getElementsByTagName('ul');
	
	if(document.getElementById('im_' + arg).title == 'Развернуть'){
	for(i = 0; i < ulList.length; i++){
		if(ulList[i].className == 'sub2') ulList[i].style.display = 'none';
	}
	document.getElementById('map_' + arg).style.display = 'block';
	document.getElementById('im_' + arg).title = 'Свернуть';
	return;
	}
	if(document.getElementById('im_' + arg).title == 'Свернуть'){
	document.getElementById('map_' + arg).style.display = 'none';
	document.getElementById('im_' + arg).title = 'Развернуть';
	return;
	}
}