Problem with accordion in ajax Tabs

Problem with accordion in ajax Tabs


Hello,
I use a jquery tabs with ajax (for loading a tab content)
it works very well,
but when ajax have to load an accordion, it doesn't work well (i loose
the accordion presentation)
i think this is because css or/and js isn't apply on the accordion
load with ajax.
i try something with jquery live function (like livequery i think)
this is my code :
$("#accordion").live("click", function(){
$("#accordion").accordion({ header: "h3" , autoHeight: false });
});
but this doesn't work, my accordion after a click has still no
presentation
i put this :
alert( $(this).text() );
in the function to see if my accordion is well "selected" and it
is...
can anyone help ?