var initShowNewsContent = function(){
   /* This function initialise the onlick of the link with the class "showNewsContent" */
   $(".showNewsContent").click( function () {
      showNewsContent($(this));
      return false;
   });
}
var showNewsContent = function(elt){
   /* This function show the News selected and hide the opened one, elt is a link object */
   elt.blur();
   /* Hide the Opened News */
   if($(".newsOpened").is("div")){
      $(".newsOpened").find(".newsSummary").show();
      $(".newsOpened").find(".newsContent").hide();
      var theClickedLink = $(".newsOpened").next();
      while(!theClickedLink.hasClass("linkRight")){
         theClickedLink = theClickedLink.next();
      }
      theClickedLink.html('<a href="#" class="showNewsContent">Lire la suite</a>');
      initShowNewsContent();
      $(".newsOpened").removeClass("newsOpened"); 
   }
   /* END Hide the Opened News */
   
   /* Show the News selected */
   var theNews = elt.parent(".linkRight").prev();
   while(!theNews.hasClass("blocNews1Txt")){
      theNews = theNews.prev();
   }
   theNews.find(".newsSummary").hide();
	/* MODIFIED ON JULY 2009 */
   theNews.find(".newsContent").slideDown("fast");
   /* END MODIFIED ON JULY 2009 */
	theNews.addClass("newsOpened");
   elt.parent(".linkRight").html('<a href="#" class="btPrint"><img src="' + pathRessources + '/img/common/bt-imprimer.png" alt="Imprimer" height="18" width="123" /></a>');
   /* END Show the News selected */
}


/* onload */
$(document).ready(function(){
   initShowNewsContent();
});
/* END onload */