$(document).ready(function(){

//menu admin
	
$(".code").html("<img src='http://www.cefs-formation.com/Style/Images/up.png' alt='' />");
	$("dt").next("dd").hide();	
	$("dt").click(function(){		
	
		if($(this).next("dd").is(":hidden")){
			$("dt").next("dd:visible").slideUp();			
			$("dt").find(".code").html("<img src='http://www.cefs-formation.com/Style/Images/up.png' alt='' />");
			$(this).next("dd").slideDown();	
			$(this).find(".code").html("<img src='http://www.cefs-formation.com/Style/Images/down.png' alt='' />");
		}else{
			$(this).next("dd").slideUp();	
			$(this).find(".code").html("<img src='http://www.cefs-formation.com/Style/Images/up.png' alt='' />");	
		}
		
	});	
	
	
	
	$("#Formation").attr('href', '#');
	$("#Formation").click(function(){	
		
		var Contenu = Fichier('display/pages/Nos-Formations.php');
			
		$('#SUJET').html(Contenu);		
	});	

	
//asscenseur
	
	
	
	$("#PageAdd").hide();
	$("#Ajouter").click(function(){
		$("#PageAdd").show();
	});
	$("#ClosePageAdd").click(function(){
		$("#PageAdd").hide();
	});
	
	
	
});
