// ----------------------------------------------------------------------------
// lancement diapo accueil
// ----------------------------------------------------------------------------
function diapo() 
{
// Diaporama automatique                                                 
// jquery-1.4.3.min.js                                                   
// ----------------------------------------------------------------------------                                                                      
var tab_photo = new Array('#photo_1','#photo_2','#photo_3','#photo_4','#photo_5');
var NbrPh = 4; /* Nombre de photo -1 pour index tableau */
var TpsAffichage = 7000; /* en millieme de s*/
var TpsEffet = 3000; /* en millieme de s */
// ----------------------------------------------------------------------------- 
var a = 0;
setInterval(affiche,TpsAffichage); // lance la fonction affiche toute les 5s 

	function affiche(){
	$(tab_photo[a]).fadeTo(TpsEffet, 0); // tps en millieme s, opacité de 1 ŕ 0 
	a++;
	if (a > NbrPh) {a = 0};
	$(tab_photo[a]).fadeTo(TpsEffet, 1); // tps en millieme s, opacité de 0 ŕ 1 
	}
} 
// ----------------------------------------------------------------------------
// survol menu
// ----------------------------------------------------------------------------
function inmenu(x){
//document.getElementById(x).style.color="#0a71cf";
document.getElementById(x).style.fontWeight="bold";
}	
function outmenu(x){
//document.getElementById(x).style.color="#4d4d4d";
document.getElementById(x).style.fontWeight="normal";
}
// ---------------------------------------------------------------------------
// Fonction Affiche CESU
// ---------------------------------------------------------------------------
function aff_cesu(x)
{
    if (x > 0){
	document.getElementById("c_cesu").style.visibility = "visible";
	}
	else{
	document.getElementById("c_cesu").style.visibility = "hidden";
	}
}
// ---------------------------------------------------------------------------
// Fonction ferme message de confirmation
// ---------------------------------------------------------------------------
function ferme_message()
{
    
	document.getElementById("c_confirmation").style.visibility = "hidden";
	
}
// ----------------------------------------------------------------------------
// 
// ----------------------------------------------------------------------------
