
$(document).ready(function(){
	$("a.convertir").click(function (){convertir_email(this)});
});
		
function convertir_email(obj){
	var nlocation = $(obj).attr("alt");
	nlocation = nlocation.replace(";", ":");
	nlocation = nlocation.replace("!", "@");
	nlocation = nlocation.replace("#crepuq#","crepuq.qc.ca");
	document.location = nlocation;
};

function montrer_secteur(id, titre){
	if(id=="0"){
		$(".Secteur").show();
	}
	else {
		$(".Secteur").hide();
		$(".Secteur"+id).show();
	}
}

