 //-- ESTA FUNCAO DEVE SER USADA COM JQUERY

 $jquery142(function () 
 {

     // select all desired input fields and attach tooltips to them
     $jquery142(".informacao").tooltip({

         // place tooltip on the right edge
         position: "center right",

         // a little tweaking of the position
         offset: [-2, 10],

         // use the built-in fadeIn/fadeOut effect
         effect: "fade",

         // custom opacity setting
         opacity: 1.0

     });

 });   
 
