/* tooltip helper
*  tooltipbox on the right of some element
*  helper img = .tooltip-helper
*  tooltip = .tooltip 
*/

$(document).ready(function() { 
    $('.tooltip-helper').tooltip({
        position: 'center right',
        effect: 'fade',
        opacity: 1, 
        tip: '.tooltip'
    });
});
