// JavaScript Tooltip with jQuery
$(function() {
    $('.tooltip-box').hide().appendTo('body');
    
    $('.location').click(function(e) {
        
        // Hide all tooltip boxes - clear
        $('.tooltip-box').hide();
                
        // Get box to show from rel tag 
        var targetBox = $(this).attr('rel');
        
        // Show tooltip box
        $('.' + targetBox).show()
        .css('top', e.pageY)
        .css('left', e.pageX)
        .css('position', 'absolute');
        return false;
    });
    
    $('#worldmap').click(function() {
         $('.tooltip-box').hide();
    });
      
});