/**
 * @author fabricefesch
 */

 function contact_selector (contact_region) {
	document.getElementById(contact_region).style.background="#FFC1BF";
 }
 
 function contact_deselector (contact_region) {
	document.getElementById(contact_region).style.background="#C8CFD5";
 }
 
 function region_selector (contact_region) {
 	document.getElementById(contact_region).style.display="block";
	document.getElementById(contact_region).style.background="#FFC1BF";
 }
 
 function region_deselector (contact_region) {
 	document.getElementById(contact_region).style.display="none";
	document.getElementById(contact_region).style.background="#C8CFD5";
 }

