//Conférences

function init_conf()
{
  $('.conf a.link_conf').click(function(){
    $(this).parent().children('div.comp').toggle();
    $(this).toggleClass("suite").toggleClass("reduire");
    if($(this).html() == "<span>&nbsp;</span>"+cst_reduire)
      $(this).html("<span>&nbsp;</span>"+cst_plus_infos)
    else
      $(this).html("<span>&nbsp;</span>"+cst_reduire);
    return false;
  });
  
  if((window.location.hash) )
  {
    //alert(window.location.hash.substring(1));
    $(window.location.hash).slideDown("fast").removeClass("masque").parent().find("a.fl_droite").html("<span>&nbsp;</span>"+cst_reduire).toggleClass("suite").toggleClass("reduire");
  }
}
