﻿$(document).ready(function () {

    $("#tools span").tooltip({

        tip: '#languages',
        position: 'bottom left',
        //Ensure that popup is positioned relative to the container and not the document
        relative: 'true',
        offset: [-18, -8],
        delay: 400,
        effect: 'slide',
        direction: 'up',
        slideInSpeed: 200,
        slideOutSpeed: 200
    });

    $("#tools img[title]").tooltip({ position: "bottom center", offset: [2, 2], delay: 0 });   
        
});

