// JavaScript Document
$(document).ready(function() {
 
    //Select all anchor tag with rel set to tooltip
    $('a').mouseover(function(e) {
         
        //Grab the title attribute's value and assign it to a variable
        var tip = $(this).attr('title');    
         
        //Remove the title attribute's to avoid the native tooltip from the browser
        $(this).attr('title','');
         
        //Append the tooltip template and its value
                
    });
 
});
