    function setDetails()
    {
        jQuery("div #right h1").after("<a onClick=\"openDetails(this);\">Voir la fiche complète >> </a>");
        jQuery("div #right p").hide();

    }

    function openDetails(obj)
    {
        // OPERATEUR TERNAIRE !!
        (obj.switcher)? jQuery(obj).next().slideUp() :  jQuery(obj).next().slideDown();
       
        obj.switcher = !obj.switcher;
    }


