// JavaScript Document
function gerer_offre(id)
{
	 if ( $("hidden_offre"+id).value == 0 )
	 {
		 $( "plus_infos"+id ).style.display = "" ;
		 $( "hidden_offre"+id ).value = 1 ;
		 $( "texte"+id ).innerHTML = "Masquer informations" ;
	 }
	 else
	 {
		 $("plus_infos"+id).style.display = "none";
		 $("hidden_offre"+id).value = 0 ;
		 $( "texte"+id ).innerHTML = "Plus d'informations" ;
	 }
}