$(document).ready(function() {

$("#tiplaunchOne").tooltip({ 
 
        // use div.tooltip as our tooltip 
        tip: '#tipOne', 
 
        // use fade effect instead of the default 
        effect: 'slide', 
 
        offset: [20, 0]
 
 
    });

});

$(document).ready(function() {

$("#tiplaunchTwo").tooltip({ 
 
        // use div.tooltip as our tooltip 
        tip: '#tipTwo', 
 
        // use fade effect instead of the default 
        effect: 'slide', 
 
        offset: [20, 0]
 
 
    });

});

$(document).ready(function() {

$("#tiplaunchThree").tooltip({ 
 
        // use div.tooltip as our tooltip 
        tip: '#tipThree', 
 
        // use fade effect instead of the default 
        effect: 'slide', 
 
        offset: [20, 0]
 
 
    });

});

$(document).ready(function() {

$("#tiplaunchFour").tooltip({ 
 
        // use div.tooltip as our tooltip 
        tip: '#tipFour', 
 
        // use fade effect instead of the default 
        effect: 'slide', 
 
        offset: [20, 0]
 
 
    });

});