function loaded()
{
	var mapping = window.document.getElementById('france_mapping');
	var areas = mapping.getElementsByTagName('AREA');
	
	for(var i = 1; i <= areas.length; i +=1)
	{
		var area = document.getElementById(i);
		var lien = document.getElementById(i + '_li');
		if(area.addEventListener)
		{
			area.addEventListener('mouseover',showMap,false);
			area.addEventListener('mouseout',hidMap,false);
			lien.addEventListener('mouseover', showMap, false);
			lien.addEventListener('mouseout', hidMap, false);
		}
		else
		{
			area.attachEvent('onmouseover',showMap);
			area.attachEvent('onmouseout',hidMap);
			lien.attachEvent('onmouseover',showMap);
			lien.attachEvent('onmouseout',hidMap);
		}
	}
}

//------------------------------------------------------------------------------
function showMap (e)
{
	e = e || window.event;
	var li = e.target || e.srcElement;
	var map = window.document.getElementById('map');
	var id = parseInt(li.id) ;
	map.src = 'http://www.nos-recherches.com/france/' + id + '.gif';
	document.getElementById(id + '_li').style.textDecoration = 'underline';
	document.getElementById(id + '_li').style.color = '#a000c3';
	document.getElementById(id + '_li').style.fontWeight = 'bold';
}

//------------------------------------------------------------------------------
function hidMap (e)
{
	e = e || window.event;
	var li = e.target || e.srcElement;
	var map = window.document.getElementById('map');
	var id = parseInt(li.id) ;
	map.src = 'http://www.nos-recherches.com/france/france_0.gif';
	document.getElementById(id + '_li').style.textDecoration = 'none' ;
	document.getElementById(id + '_li').style.color = '#000';
	document.getElementById(id + '_li').style.fontWeight = 'normal';
}
if (window.addEventListener) window.addEventListener('load',loaded,false);
else window.attachEvent('onload',loaded);  
