 $(document).ready(function() {  
   
     //Select all anchor tag with rel set to tooltip  
     $('#content 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  
         $(this).append('<div id="tooltip"><div class="tipHeader"></div><div class="tipBody">' + tip + '</div><div class="tipFooter"></div></div>');       
           
         //Set the X and Y axis of the tooltip  
         $('#tooltip').css('top', e.pageY + 5 );  
         $('#tooltip').css('left', e.pageX + 5 );  
           
         //Show the tooltip with faceIn effect  
         $('#tooltip').fadeIn('500');  
         $('#tooltip').fadeTo('10',1.0);  
           
     }).mousemove(function(e) {  
         $('#tooltip').css('top', e.pageY + 5 );  
         $('#tooltip').css('left', e.pageX + 5 );  
           
     }).mouseout(function() {  
         $(this).attr('title',$('.tipBody').html());  
         $(this).children('div#tooltip').remove();  
           
     });
     
   
 });

