function mapmeup(mapname) {
	document.images['map'].src = '/img/' + mapname + '.gif';	

	var navRoot = document.getElementById("contacts");
	for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];			
			node.className='not-selectied'
	}

	var onlinkidentity=document.getElementById(mapname);
	onlinkidentity.className='selected-map';
}