              
function hintLinks(elemento, width){
                	
    if ( typeof width != 'undefined' ) {
        $('#tooltip').css('width',width);
    }

    $(elemento).tooltip({
        showURL: false,
        track: true,
        left: 24,
        fade: 100
    });
}
                
