function lire(fichier) {
	url="actu.php?fiche="+fichier;
	fenetre=window.open(url,"pop");
	fenetre.focus();
	}

function aff_pop() {
	option="width=300px, height=500px";
	fenetre=window.open("../pages/contact.php","pop",option);
	fenetre.focus();
	}
function affCompteur(){
	document.getElementById('compteur').style.color="black";
	}
function masqueCompteur(){
	document.getElementById('compteur').style.color="#AFB2BB";
	}
function aff(obj){
	document.getElementById(obj).style.visibility="visible";
	}
function masque(obj){
	document.getElementById(obj).style.visibility="hidden";
	}
function titre(obj){
	document.getElementById("img"+obj).src="../images/"+obj+"1.png";
	masque('asso');
	masque('pratique');
	masque('liens');
	masque('media');
	id=obj;
	if(document.getElementById(id)) aff(id);
	}
function finTitre(obj){
	document.getElementById("img"+obj).src="../images/"+obj+".png";
	masque(obj);
	}
function bouge(id,methode,h){
	obj=document.getElementById(id);
	if(methode=="d"){
		h+=5;
		obj.style.top=h+"px";
		}
	if(methode=="m"){
		h-=5;
		obj.style.top=h+"px";
		}
	}
