function toggle_by_id(m_id){
	$('#'+m_id).toggle('slow');
}
function togglemot(cible,legend){
	
}
var actived_point=Array();
var actived_zone=Array();
var desactived_point=Array();
function active_zone(m_id,m_src,m_src_normal){
	desactived_point[m_id]=false;
	if (!actived_point[m_id]) actived_point[m_id]=0;
	if (!actived_zone[m_id]) actived_zone[m_id]=0;
	if (m_src_normal!='IMG/') $('#map_obj_'+m_id).attr('src',m_src_normal);
	$('#map_obj_div_'+m_id).addClass('map_obj_on');
	$('#map_objdiv_'+m_id).show();
	//}
	actived_zone[m_id]=1;
	//$('#test').append('<br/>active_zone '+m_id+':'+actived_zone[m_id]+'/'+actived_point[m_id]+'/'+desactived_point[m_id]);
}
function desactive_zone(m_id,m_src_normal){
	actived_zone[m_id]=0;
	setTimeout('desactive_point2(\''+m_id+'\',\''+m_src_normal+'\')',500);
	//$('#test').append('<br/>desactive_zone '+m_id+':'+actived_zone[m_id]+'/'+actived_point[m_id]+'/'+desactived_point[m_id]);
}
function active_point(m_id,m_src,m_src_normal,speed){
	if (!actived_point[m_id]) actived_point[m_id]=0;
	if (!actived_zone[m_id]) actived_zone[m_id]=0;
	if(actived_point[m_id]==0 && !desactived_point[m_id]){
		if (m_src!='IMG/') $('#map_obj_'+m_id).attr('src',m_src);
		$('#map_obj_div_'+m_id).addClass('map_obj_on');
		$('#map_objdiv_'+m_id).show(speed);
	}
	actived_point[m_id]=1;
	//$('#test').append('<br/>active_point '+m_id+':'+actived_zone[m_id]+'/'+actived_point[m_id]+'/'+desactived_point[m_id]);
}
function desactive_point(m_id,m_src_normal){
	actived_point[m_id]=0;
	setTimeout('desactive_point2(\''+m_id+'\',\''+m_src_normal+'\')',500);
	//$('#test').append('<br/>desactive_point '+m_id+':'+actived_zone[m_id]+'/'+actived_point[m_id]+'/'+desactived_point[m_id]);
}
function desactive_point2(m_id,m_src_normal){
	if(actived_point[m_id]==0 && actived_zone[m_id]==0 && !desactived_point[m_id]) {
		if (m_src_normal!='IMG/') $('#map_obj_'+m_id).attr('src',m_src_normal);
		$('#map_objdiv_'+m_id).hide();
		$('#map_obj_div_'+m_id).removeClass('map_obj_on');
	}
	//$('#test').append('<br/>desactive_point2 '+m_id+':'+actived_zone[m_id]+'/'+actived_point[m_id]+'/'+desactived_point[m_id]);
	
}
function force_desactive_point(m_id,m_src_normal){
	desactived_point[m_id]=true;
	if (m_src_normal!='IMG/') $('#map_obj_'+m_id).attr('src',m_src_normal);
	$('#map_objdiv_'+m_id).hide();
	$('#map_obj_div_'+m_id).removeClass('map_obj_on');
	setTimeout('actived_point[\''+m_id+'\']=0;actived_zone[\''+m_id+'\']=0;desactived_point[\''+m_id+'\']=false;',100);
	//$('#test').append('<br/>force_desactive_point '+m_id+':'+actived_zone[m_id]+'/'+actived_point[m_id]+'/'+desactived_point[m_id]);
}

