$(document).ready(function($){
	$("#contenu .reponse").hide();
    $("h3").css("cursor","pointer");
	
      
    if($("h3").next(".reponse").is(":hidden")){	
           $(this).removeClass("bleu");
        }  
      
    $("h3").click(function(){      
        if($(this).next(".reponse").is(":hidden")){            
            $(".reponse").slideUp();
            $("h3").removeClass("bleu");
            $(this).next(".reponse").slideDown();
            $(this).addClass("bleu");
        }
	});

	$('body #question a[href^=#]').click(function(){
		cible = $(this).attr('href'); 
		ancre = $('a[name='+cible.substr(4, cible.length-1)+']'); 
		
		$("#contenu").find("h3").each(function(){
			if(ancre.next(this).next(".reponse").is(":hidden")){	
				$(".reponse").slideUp();
                $(this).removeClass("bleu");
				ancre.next(this).next(".reponse").slideDown();
                ancre.next(this).addClass("bleu");
			}            
		});
	});
    
    
    
});
