$(function() {

// select all desired input fields and attach tooltips to them 
$("#tab a").tooltip({ 
 
    // place tooltip on the right edge 
    position: ['bottom', 'center'], 
 
    // a little tweaking of the position 
    offset: [10, 0], 
 
    // custom opacity setting 
    opacity: 0.7 
});


// select all desired input fields and attach tooltips to them 
$("#tab-up a").tooltip({ 
 
    // place tooltip on the right edge 
    position: ['top', 'center'], 
 
    offset: [10, 0], 
 
    // custom opacity setting 
    opacity: 0.7 
});


});