function initLangtexte() {
    j$("td.langtext").hide();

    /*j$(".langtext div").each(function(){
      var langtext=j$(this);
      //langtext.html(("<pre>"+langtext.html()+"</pre>").replace(/(\n)/gi, "<br> \n").replace(/<.?pre>/gi, ""));
      //langtext.html(langtext.html().replace(/\s/gi, '&nbsp;'));
      alert(langtext.html());
      langtext.html(langtext.html().replace(/([a-zA-Z])/, function($l){return $l.toUpperCase();}));
      alert(langtext.html());
    });*/

    j$("a.langtext").click( function()
    {
          //need to reference the langtext, otherwise we open them all
          var langtext_class = j$(this).attr('id');
          j$('td.langtext.'+ langtext_class).toggle();
          return false;
    });
}

