$(document).ready(function(){ 
	$('#pdf_doc').hide();
	$('#ancre_pdf').click(function(){
	$(this).siblings('#pdf_doc').toggle('slow');
	});
});