Herramientas jquery - información sobre herramientas en vivo para Ajax

Tengo una versión funcional de información sobre herramientas (jQuery Tools -http://flowplayer.org/tools/demos/tooltip/index.html),

jQuery(document).ready(function() { 
jQuery('.more_info').each(function(){
   jQuery(this).tooltip({ 
       effect: 'slide',
       offset: [10, 570],
       predelay: 100, 
       position: "bottom left"}).dynamic( { 
        bottom: { 
        direction: 'down', 
        bounce: true 
    } 
    }); 
});   

});

después de cargar ajax, la información sobre herramientas ya no funciona porque, el script ya estaba cargado, probé la solución del forohttp://flowplayer.org/tools/forum/30/37281 , pero no funciona o no se implementa correctamente

aquí está el código:

jQuery(document).ready(function() { 
jQuery('.more_info').each(function(){
   jQuery(this).not('.tt_init').tooltip({ 
       effect: 'slide',
       offset: [10, 570],
       predelay: 100, 
       position: "bottom left"}).dynamic( { 
        bottom: { 
        direction: 'down', 
        bounce: true 
        } 
    });
    jQuery(this).not('.tt_init').addClass('tt_init'); 
});   

});

y nada ... estoy haciendo algo mal, gracias por ayudarme;), perdón por mi mal inglés

Respuestas a la pregunta(2)

Su respuesta a la pregunta