$( 'h1' ).text( function(i){
return ( $( this ).text() + ' -N- ' + i);
})
.click(function() {
$( this ).next().slideToggle( "slow");})
.next().hide(); // changement de nœud
JS Bin on jsbin.com