$(document).ready(function() { 
    $(".hmfdictionary_word").tooltip({ 
 
        // use div.tooltip as our tooltip 
        tip: '.hmfdictionary_word_content', 
 
        // use fade effect instead of the default 
        effect: 'fade', 
 
        // make fadeOutSpeed similar to browser's default 
        fadeOutSpeed: 100, 
 
        // the time before tooltip is shown 
        predelay: 100, 
 
        // tweak the position 
        position: "bottom right",         
        offset: [-40, 0] 
    });
});	
