// JavaScript Document
<!--
	function init_reponses()
	{
		q_answers = $("#contenu .questions div p.r");
		q_links = $("#contenu .questions div p.lien a");
		q_answers.each(
			function(i)
			{
				//this.style.display = "block";
				if(q_links[i])
				{
					//q_links[i].getElementsByTagName("IMG")[0].src = toggle_imgs[1].src;
					var l = q_links[i];
					l.answer = q_answers[i];
					l.answer.hidden = true;
					l.onclick = show_answer;
				
				}
			}
		)
	}
	
	function show_answer(){
	if(this.answer.style.display !="block")
		{			
			this.answer.style.display = "block";
			this.getElementsByTagName("IMG")[0].src = "images/puce-rep_open.gif";
			this.getElementsByTagName("SPAN")[0].innerHTML = "R&eacute;duire";
		}
	else
		{
			this.answer.style.display = "none";
			this.getElementsByTagName("IMG")[0].src = "images/puce-rep_close.gif";
			this.getElementsByTagName("SPAN")[0].innerHTML = "R&eacute;ponse";
		}
			this.answer.hidden = !this.answer.hidden;
		return false;
	}	
	
	$(document).ready(
		function(){
			init_reponses();
		}
	)
-->