/* <script language="Javascript"> */

function myMM_nbGroup() { //CFA le vigean : utilisé pour gérer les cas spécifiques de Questions/réponses et Espaces Annonces
	args=myMM_nbGroup.arguments;
	var comm = "MM_nbGroup(";
	var cpt=0;
	for(var i=0;i<args.length;i++){
		if(cpt>0){
		comm+=',';
		}
		comm+='\''+args[i]+'\'';
		cpt++;
	}
	comm+=')';
 //alert(comm);
	eval(comm);

	if (args[0]=="down"){
		if (args.length>=3 && args[2]!="questions"){
			if (document.getElementById("question")!=null){
				document.getElementById("question").style.backgroundImage='url(http://www.cfa-levigean.fr/foto-global/navigation/questionfond.gif)';
			}
			if (document.getElementById("emploi")!=null){
				document.getElementById('emploi').className='sousmenu';
			}
			if (document.getElementById("jeune")!=null){
				document.getElementById('jeune').className='sousmenu';
			}
		}
		if (args.length>=3 && args[2]!="annonces"){
			if (document.getElementById("annonce")!=null){
				document.getElementById("annonce").style.backgroundImage='url(http://www.cfa-levigean.fr/foto-global/navigation/annoncefond.gif)';
			}
			if (document.getElementById("trouver")!=null){
				document.getElementById('trouver').className='sousmenu';
			}
			if (document.getElementById("chercher")!=null){
				document.getElementById('chercher').className='sousmenu';
			}
		}
	}
}

function fondquestionout(){
	if(document.getElementById("question").style.backgroundImage!='url(http://www.cfa-levigean.fr/foto-global/navigation/questionfondclick.gif)'){
		document.getElementById("question").style.backgroundImage='url(http://www.cfa-levigean.fr/foto-global/navigation/questionfond.gif)';
	}
}

function fondquestionover(){
	if(document.getElementById("question").style.backgroundImage!='url(http://www.cfa-levigean.fr/foto-global/navigation/questionfondclick.gif)'){
		document.getElementById("question").style.backgroundImage='url(http://www.cfa-levigean.fr/foto-global/navigation/questionfondroll.gif)';
	}
}

function annonceout(){
	if(document.getElementById("annonce").style.backgroundImage!='url(http://www.cfa-levigean.fr/foto-global/navigation/annoncefondclick.gif)'){
		document.getElementById("annonce").style.backgroundImage='url(http://www.cfa-levigean.fr/foto-global/navigation/annoncefond.gif)';
	}
}

function annonceover(){
	if(document.getElementById("annonce").style.backgroundImage!='url(http://www.cfa-levigean.fr/foto-global/navigation/annoncefondclick.gif)'){
		document.getElementById("annonce").style.backgroundImage='url(http://www.cfa-levigean.fr/foto-global/navigation/annonceroll.gif)';
	}
}

