$(document).ready(function() {

    /* pour afficher le roll hover du menu*/
	$(".navigation a.bt-dossiers").mouseover(function()
	{
		$(".navigation ul").toggle();
		$(this).addClass("actif");
	}).mouseout(function()
	{
		$(".navigation ul").toggle();
		$(this).removeClass("actif");
	});

	$(".navigation ul").mouseover(function()
	{
		$(".navigation ul").css("display","block")
		$(this).parent().children("a").addClass("actif");
	}).mouseout(function()
	{
		$(this).toggle();
		$(this).parent().children("a").removeClass("actif");
	});

	/* pour afficher la liste deroulante de la page avantages*/
	$(".page-avantages .bandeau").click(function () {									  
		var lien = $(this).children("span").html();
		
			$(".page-avantages .bandeau span").html("&raquo; En savoir plus");
			$(".page-avantages .contenu-av").slideUp("fast");
			
			if ( lien == "Fermer" ) 
			{
				return false;
			}
			
			$(this).parent().children(".contenu-av").slideDown("fast");
			$(this).children("span").html("Fermer");
			
			
	});   
	
});
