// JavaScript Document
var mapItem = '';
var linkItem = '';
if(!document.getElementById){
	if(document.all('map_overview')){
		for(i=1;i<=13;i++){
			document.all('mapItem_'+i).style.display = 'inline';
		}
	}
} 
function handleMapItem(action, id){
	if(document.getElementById){
		var sep = id.indexOf('_');
		var itemName = id.substr(0,sep);
		var itemID = id.substr(sep+1,id.length);
		linkItem = document.getElementById('linkItem_'+itemID);
		mapItem = document.getElementById('mapItem_'+itemID);
		//alert('id= ' + id + '\naction= ' + action + '\nitemID= ' + itemID);
		if(action == 'show'){
			//linkItem.style.border = '1px solid #b8141b';
			linkItem.style.backgroundColor = '#EEEEEE';
			mapItem.style.display = 'inline';
		}else{
			//linkItem.style.border = '1px solid #fff';
			linkItem.style.color = '#000';
			linkItem.style.backgroundColor = '#FFFFFF';
			mapItem.style.display = 'none';     
		}   
	}  
}
